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

Side by Side Diff: third_party/WebKit/Source/core/css/PropertyRegistration.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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 PropertyRegistration_h 5 #ifndef PropertyRegistration_h
6 #define PropertyRegistration_h 6 #define PropertyRegistration_h
7 7
8 #include "core/animation/CSSInterpolationType.h" 8 #include "core/animation/CSSInterpolationType.h"
9 #include "core/animation/InterpolationTypesMap.h" 9 #include "core/animation/InterpolationTypesMap.h"
10 #include "core/css/CSSSyntaxDescriptor.h" 10 #include "core/css/CSSSyntaxDescriptor.h"
11 #include "core/css/CSSValue.h" 11 #include "core/css/CSSValue.h"
12 #include "core/css/CSSVariableData.h" 12 #include "core/css/CSSVariableData.h"
13 #include "wtf/Allocator.h" 13 #include "platform/wtf/Allocator.h"
14 #include "wtf/RefPtr.h" 14 #include "platform/wtf/RefPtr.h"
15 #include "wtf/text/WTFString.h" 15 #include "platform/wtf/text/WTFString.h"
16 16
17 namespace blink { 17 namespace blink {
18 18
19 class ExceptionState; 19 class ExceptionState;
20 class ExecutionContext; 20 class ExecutionContext;
21 class PropertyDescriptor; 21 class PropertyDescriptor;
22 22
23 using CSSInterpolationTypes = Vector<std::unique_ptr<CSSInterpolationType>>; 23 using CSSInterpolationTypes = Vector<std::unique_ptr<CSSInterpolationType>>;
24 24
25 class CORE_EXPORT PropertyRegistration 25 class CORE_EXPORT PropertyRegistration
(...skipping 25 matching lines...) Expand all
51 const CSSSyntaxDescriptor syntax_; 51 const CSSSyntaxDescriptor syntax_;
52 const bool inherits_; 52 const bool inherits_;
53 const Member<const CSSValue> initial_; 53 const Member<const CSSValue> initial_;
54 const RefPtr<CSSVariableData> initial_variable_data_; 54 const RefPtr<CSSVariableData> initial_variable_data_;
55 const InterpolationTypes interpolation_types_; 55 const InterpolationTypes interpolation_types_;
56 }; 56 };
57 57
58 } // namespace blink 58 } // namespace blink
59 59
60 #endif // PropertyRegistration_h 60 #endif // PropertyRegistration_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/PageRuleCollector.h ('k') | third_party/WebKit/Source/core/css/PropertyRegistry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698