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

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

Issue 2036893003: [CSS Typed OM] Rename StyleValue -> CSSStyleValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update more union types 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 36a4437af4608d5f81c6d4b2e4265f039a0fbbe9..439c67a705ee2b41dc9b3a7cc96ff755edc319b3 100644
--- a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h
+++ b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.h
@@ -11,13 +11,13 @@
namespace blink {
class CSSValue;
-class StyleValue;
+class CSSStyleValue;
class StyleValueFactory {
STATIC_ONLY(StyleValueFactory);
public:
- static StyleValue* create(CSSPropertyID, const CSSValue&);
+ static CSSStyleValue* create(CSSPropertyID, const CSSValue&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698