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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSVariableData.h

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 #ifndef CSSVariableData_h 5 #ifndef CSSVariableData_h
6 #define CSSVariableData_h 6 #define CSSVariableData_h
7 7
8 #include "core/css/StylePropertySet.h" 8 #include "core/css/StylePropertySet.h"
9 #include "core/css/parser/CSSParserToken.h" 9 #include "core/css/parser/CSSParserToken.h"
10 #include "core/css/parser/CSSParserTokenRange.h" 10 #include "core/css/parser/CSSParserTokenRange.h"
11 #include "wtf/Forward.h" 11 #include "platform/wtf/Forward.h"
12 #include "wtf/PassRefPtr.h" 12 #include "platform/wtf/PassRefPtr.h"
13 #include "wtf/text/WTFString.h" 13 #include "platform/wtf/text/WTFString.h"
14 14
15 namespace blink { 15 namespace blink {
16 16
17 class CSSParserTokenRange; 17 class CSSParserTokenRange;
18 class CSSSyntaxDescriptor; 18 class CSSSyntaxDescriptor;
19 19
20 class CORE_EXPORT CSSVariableData : public RefCounted<CSSVariableData> { 20 class CORE_EXPORT CSSVariableData : public RefCounted<CSSVariableData> {
21 WTF_MAKE_NONCOPYABLE(CSSVariableData); 21 WTF_MAKE_NONCOPYABLE(CSSVariableData);
22 USING_FAST_MALLOC(CSSVariableData); 22 USING_FAST_MALLOC(CSSVariableData);
23 23
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 const bool needs_variable_resolution_; 81 const bool needs_variable_resolution_;
82 82
83 // Parsed representation for @apply 83 // Parsed representation for @apply
84 bool cached_property_set_; 84 bool cached_property_set_;
85 Persistent<StylePropertySet> property_set_; 85 Persistent<StylePropertySet> property_set_;
86 }; 86 };
87 87
88 } // namespace blink 88 } // namespace blink
89 89
90 #endif // CSSVariableData_h 90 #endif // CSSVariableData_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSValuePool.cpp ('k') | third_party/WebKit/Source/core/css/CSSVariableData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698