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

Side by Side Diff: third_party/WebKit/Source/core/css/parser/CSSParserToken.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 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 "wtf/Allocator.h" 10 #include "platform/wtf/Allocator.h"
11 #include "wtf/text/StringView.h" 11 #include "platform/wtf/text/StringView.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 enum CSSParserTokenType { 15 enum CSSParserTokenType {
16 kIdentToken = 0, 16 kIdentToken = 0,
17 kFunctionToken, 17 kFunctionToken,
18 kAtKeywordToken, 18 kAtKeywordToken,
19 kHashToken, 19 kHashToken,
20 kUrlToken, 20 kUrlToken,
21 kBadUrlToken, 21 kBadUrlToken,
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 struct { 170 struct {
171 UChar32 start; 171 UChar32 start;
172 UChar32 end; 172 UChar32 end;
173 } unicode_range_; 173 } unicode_range_;
174 }; 174 };
175 }; 175 };
176 176
177 } // namespace blink 177 } // namespace blink
178 178
179 #endif // CSSSParserToken_h 179 #endif // CSSSParserToken_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698