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

Unified Diff: third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h

Issue 2042943003: Move CSSValue->CSSStyleValue logic out of StylePropertyMap and into the StyleValueFactory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@stylevaue
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h
diff --git a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h
index 439c67a705ee2b41dc9b3a7cc96ff755edc319b3..a3866d7d34b41c3fd0cab26bc7954e83a56d0edd 100644
--- a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h
+++ b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h
@@ -6,18 +6,18 @@
#define StyleValueFactory_h
#include "core/CSSPropertyNames.h"
+#include "core/css/cssom/CSSStyleValue.h"
#include "wtf/Allocator.h"
namespace blink {
class CSSValue;
-class CSSStyleValue;
class StyleValueFactory {
STATIC_ONLY(StyleValueFactory);
public:
- static CSSStyleValue* create(CSSPropertyID, const CSSValue&);
+ static CSSStyleValueVector cssValueToStyleValueVector(CSSPropertyID, const CSSValue&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698