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

Unified Diff: Source/core/css/parser/MediaQueryToken.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 linespace Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/parser/MediaQueryParser.cpp ('k') | Source/core/css/parser/MediaQueryTokenizer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/parser/MediaQueryToken.h
diff --git a/Source/core/css/parser/MediaQueryToken.h b/Source/core/css/parser/MediaQueryToken.h
index f70615e780f82f1c67d553f26449c8c8489dcc25..9821b5d0e37bc9811a65f2b6f6f4cc4ae0bee068 100644
--- a/Source/core/css/parser/MediaQueryToken.h
+++ b/Source/core/css/parser/MediaQueryToken.h
@@ -27,10 +27,10 @@ enum MediaQueryTokenType {
RightBracketToken = 13,
LeftBraceToken = 14,
RightBraceToken = 15,
- StringToken = 15,
eseidel 2014/04/29 04:50:07 Was this causing other bugs? Do we need to mark t
- BadStringToken = 16,
- EOFToken = 17,
- CommentToken = 18,
+ StringToken = 16,
+ BadStringToken = 17,
+ EOFToken = 18,
+ CommentToken = 19,
};
enum NumericValueType {
@@ -81,6 +81,8 @@ private:
BlockType m_blockType;
};
+typedef Vector<MediaQueryToken>::iterator MediaQueryTokenIterator;
+
} // namespace
#endif // MediaQueryToken_h
« no previous file with comments | « Source/core/css/parser/MediaQueryParser.cpp ('k') | Source/core/css/parser/MediaQueryTokenizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698