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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSParser.h

Issue 2580793005: Split the CSSParserContext class out of CSSParserMode into its own file. (Closed)
Patch Set: fix compile Created 4 years 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
Index: third_party/WebKit/Source/core/css/parser/CSSParser.h
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParser.h b/third_party/WebKit/Source/core/css/parser/CSSParser.h
index 9e46513a0c784651c4c434aebab02af10c4ab691..7c30d0809590a155f4aac7a6cd41ea33e4443447 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSParser.h
+++ b/third_party/WebKit/Source/core/css/parser/CSSParser.h
@@ -7,14 +7,13 @@
#include "core/CSSPropertyNames.h"
#include "core/CoreExport.h"
-#include "core/css/CSSValue.h"
#include "core/css/StylePropertySet.h"
-#include "core/css/parser/CSSParserMode.h"
-#include "platform/graphics/Color.h"
+#include "core/css/parser/CSSParserContext.h"
#include <memory>
namespace blink {
+class Color;
class CSSParserObserver;
class CSSParserTokenRange;
class CSSSelectorList;
@@ -23,6 +22,7 @@ class ImmutableStylePropertySet;
class StyleRuleBase;
class StyleRuleKeyframe;
class StyleSheetContents;
+class CSSValue;
// This class serves as the public API for the css/parser subsystem
class CORE_EXPORT CSSParser {

Powered by Google App Engine
This is Rietveld 408576698