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

Side by Side Diff: Source/core/css/parser/CSSParserToken.h

Issue 1188513005: Move CSSParserString out of CSSParserValues.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Change includes to use CSSParserString.h Created 5 years, 6 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
« no previous file with comments | « Source/core/css/parser/CSSParserString.h ('k') | Source/core/css/parser/CSSParserValues.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CSSParserToken_h 5 #ifndef CSSParserToken_h
6 #define CSSParserToken_h 6 #define CSSParserToken_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/css/CSSPrimitiveValue.h" 9 #include "core/css/CSSPrimitiveValue.h"
10 #include "core/css/parser/CSSParserValues.h" 10 #include "core/css/parser/CSSParserString.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 enum CSSParserTokenType { 14 enum CSSParserTokenType {
15 IdentToken = 0, 15 IdentToken = 0,
16 FunctionToken, 16 FunctionToken,
17 AtKeywordToken, 17 AtKeywordToken,
18 HashToken, 18 HashToken,
19 UrlToken, 19 UrlToken,
20 BadUrlToken, 20 BadUrlToken,
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 } // namespace blink 143 } // namespace blink
144 144
145 namespace WTF { 145 namespace WTF {
146 template <> 146 template <>
147 struct IsTriviallyMoveAssignable<blink::CSSParserToken> { 147 struct IsTriviallyMoveAssignable<blink::CSSParserToken> {
148 static const bool value = true; 148 static const bool value = true;
149 }; 149 };
150 } 150 }
151 151
152 #endif // CSSSParserToken_h 152 #endif // CSSSParserToken_h
OLDNEW
« no previous file with comments | « Source/core/css/parser/CSSParserString.h ('k') | Source/core/css/parser/CSSParserValues.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698