blob: f4092db7312a1b1e3313cb7f297040baed76056b [file] [log] [blame]
/*
* Copyright 2015 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef COBALT_DOM_KEYFRAMES_MAP_UPDATER_H_
#define COBALT_DOM_KEYFRAMES_MAP_UPDATER_H_
#include <map>
#include <string>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "cobalt/cssom/css_keyframes_rule.h"
#include "cobalt/cssom/css_rule_visitor.h"
#include "googleurl/src/gurl.h"
namespace cobalt {
namespace cssom {
class CSSStyleSheet;
class StyleSheetList;
} // cssom
namespace dom {
// Iterates through all CSS rules and for each Keyframes rule, adds it to
// a map from keyframes name to keyframes object. This allows us to quickly
// lookup @keyframes rules by name as elements reference them in their
// 'animation-name' style property.
class KeyframesMapUpdater : public cssom::CSSRuleVisitor {
public:
explicit KeyframesMapUpdater(cssom::CSSKeyframesRule::NameMap* keyframes_map);
void ProcessCSSStyleSheet(
const scoped_refptr<cssom::CSSStyleSheet>& style_sheet);
void ProcessStyleSheetList(
const scoped_refptr<cssom::StyleSheetList>& style_sheet_list);
private:
void VisitCSSStyleRule(cssom::CSSStyleRule* /*css_style_rule*/) OVERRIDE {}
void VisitCSSFontFaceRule(
cssom::CSSFontFaceRule* /*css_font_face_rule*/) OVERRIDE {}
void VisitCSSMediaRule(cssom::CSSMediaRule* /*css_media_rule*/) OVERRIDE {}
void VisitCSSKeyframeRule(
cssom::CSSKeyframeRule* /*css_keyframe_rule*/) OVERRIDE {}
void VisitCSSKeyframesRule(
cssom::CSSKeyframesRule* /*css_keyframes_rule*/) OVERRIDE;
cssom::CSSKeyframesRule::NameMap* keyframes_map_;
DISALLOW_COPY_AND_ASSIGN(KeyframesMapUpdater);
};
} // namespace dom
} // namespace cobalt
#endif // COBALT_DOM_KEYFRAMES_MAP_UPDATER_H_