blob: 7f20d9e986e927a8c6adbf73a99281433c395e9b [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_NAMESPACE_RULE_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_NAMESPACE_RULE_H_
#include "third_party/blink/renderer/core/css/css_rule.h"
#include "third_party/blink/renderer/platform/wtf/casting.h"
namespace blink {
class StyleRuleNamespace;
class CSSNamespaceRule final : public CSSRule {
DEFINE_WRAPPERTYPEINFO();
public:
CSSNamespaceRule(StyleRuleNamespace*, CSSStyleSheet*);
~CSSNamespaceRule() override;
String cssText() const override;
void Reattach(StyleRuleBase*) override {}
AtomicString namespaceURI() const;
AtomicString prefix() const;
void Trace(blink::Visitor*) override;
private:
CSSRule::Type type() const override { return kNamespaceRule; }
Member<StyleRuleNamespace> namespace_rule_;
};
template <>
struct DowncastTraits<CSSNamespaceRule> {
static bool AllowFrom(const CSSRule& rule) {
return rule.type() == CSSRule::kNamespaceRule;
}
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_NAMESPACE_RULE_H_