Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: third_party/WebKit/Source/core/css/CSSNamespaceRule.cpp

Issue 2813863003: Rewrite references to "wtf/" to "platform/wtf/" in core/css and core/style. (Closed)
Patch Set: Rebase. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/css/CSSNamespaceRule.h" 5 #include "core/css/CSSNamespaceRule.h"
6 6
7 #include "core/css/CSSMarkup.h" 7 #include "core/css/CSSMarkup.h"
8 #include "core/css/StyleRuleNamespace.h" 8 #include "core/css/StyleRuleNamespace.h"
9 #include "wtf/text/StringBuilder.h" 9 #include "platform/wtf/text/StringBuilder.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 CSSNamespaceRule::CSSNamespaceRule(StyleRuleNamespace* namespace_rule, 13 CSSNamespaceRule::CSSNamespaceRule(StyleRuleNamespace* namespace_rule,
14 CSSStyleSheet* parent) 14 CSSStyleSheet* parent)
15 : CSSRule(parent), namespace_rule_(namespace_rule) {} 15 : CSSRule(parent), namespace_rule_(namespace_rule) {}
16 16
17 CSSNamespaceRule::~CSSNamespaceRule() {} 17 CSSNamespaceRule::~CSSNamespaceRule() {}
18 18
19 String CSSNamespaceRule::cssText() const { 19 String CSSNamespaceRule::cssText() const {
(...skipping 15 matching lines...) Expand all
35 AtomicString CSSNamespaceRule::prefix() const { 35 AtomicString CSSNamespaceRule::prefix() const {
36 return namespace_rule_->Prefix(); 36 return namespace_rule_->Prefix();
37 } 37 }
38 38
39 DEFINE_TRACE(CSSNamespaceRule) { 39 DEFINE_TRACE(CSSNamespaceRule) {
40 visitor->Trace(namespace_rule_); 40 visitor->Trace(namespace_rule_);
41 CSSRule::Trace(visitor); 41 CSSRule::Trace(visitor);
42 } 42 }
43 43
44 } // namespace blink 44 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSMediaRule.cpp ('k') | third_party/WebKit/Source/core/css/CSSPageRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698