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

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

Issue 252743004: A thread safe CSS calc parser for sizes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed CSSCalc tests that assert Created 6 years, 7 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 MediaQueryTokenizer_h 5 #ifndef MediaQueryTokenizer_h
6 #define MediaQueryTokenizer_h 6 #define MediaQueryTokenizer_h
7 7
8 #include "core/css/parser/MediaQueryToken.h" 8 #include "core/css/parser/MediaQueryToken.h"
9 #include "core/html/parser/InputStreamPreprocessor.h" 9 #include "core/html/parser/InputStreamPreprocessor.h"
10 #include "wtf/text/WTFString.h" 10 #include "wtf/text/WTFString.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 MediaQueryToken whiteSpace(UChar); 56 MediaQueryToken whiteSpace(UChar);
57 MediaQueryToken leftParenthesis(UChar); 57 MediaQueryToken leftParenthesis(UChar);
58 MediaQueryToken rightParenthesis(UChar); 58 MediaQueryToken rightParenthesis(UChar);
59 MediaQueryToken leftBracket(UChar); 59 MediaQueryToken leftBracket(UChar);
60 MediaQueryToken rightBracket(UChar); 60 MediaQueryToken rightBracket(UChar);
61 MediaQueryToken leftBrace(UChar); 61 MediaQueryToken leftBrace(UChar);
62 MediaQueryToken rightBrace(UChar); 62 MediaQueryToken rightBrace(UChar);
63 MediaQueryToken plusOrFullStop(UChar); 63 MediaQueryToken plusOrFullStop(UChar);
64 MediaQueryToken comma(UChar); 64 MediaQueryToken comma(UChar);
65 MediaQueryToken hyphenMinus(UChar); 65 MediaQueryToken hyphenMinus(UChar);
66 MediaQueryToken asterisk(UChar);
66 MediaQueryToken solidus(UChar); 67 MediaQueryToken solidus(UChar);
67 MediaQueryToken colon(UChar); 68 MediaQueryToken colon(UChar);
68 MediaQueryToken semiColon(UChar); 69 MediaQueryToken semiColon(UChar);
69 MediaQueryToken reverseSolidus(UChar); 70 MediaQueryToken reverseSolidus(UChar);
70 MediaQueryToken asciiDigit(UChar); 71 MediaQueryToken asciiDigit(UChar);
71 MediaQueryToken nameStart(UChar); 72 MediaQueryToken nameStart(UChar);
72 MediaQueryToken stringStart(UChar); 73 MediaQueryToken stringStart(UChar);
73 MediaQueryToken endOfFile(UChar); 74 MediaQueryToken endOfFile(UChar);
74 75
75 MediaQueryInputStream& m_input; 76 MediaQueryInputStream& m_input;
76 }; 77 };
77 78
78 79
79 80
80 } // namespace WebCore 81 } // namespace WebCore
81 82
82 #endif // MediaQueryTokenizer_h 83 #endif // MediaQueryTokenizer_h
OLDNEW
« no previous file with comments | « Source/core/css/parser/MediaQueryToken.cpp ('k') | Source/core/css/parser/MediaQueryTokenizer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698