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

Unified Diff: Source/build/scripts/templates/StyleBuilderFunctions.h.tmpl

Issue 1164573002: CSSValue Immediates: Change CSSValue to an object instead of a pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Some small fixes to (hopefully) fix some broken tests Created 5 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 side-by-side diff with in-line comments
Download patch
Index: Source/build/scripts/templates/StyleBuilderFunctions.h.tmpl
diff --git a/Source/build/scripts/templates/StyleBuilderFunctions.h.tmpl b/Source/build/scripts/templates/StyleBuilderFunctions.h.tmpl
index 2d94fd04421f9811acabf5951f46017ee2ea361e..82e46d21b632ec311c426d748dd91e0e4215e806 100644
--- a/Source/build/scripts/templates/StyleBuilderFunctions.h.tmpl
+++ b/Source/build/scripts/templates/StyleBuilderFunctions.h.tmpl
@@ -18,7 +18,7 @@ public:
if property.should_declare_functions %}
static void applyInitial{{property_id}}(StyleResolverState&);
static void applyInherit{{property_id}}(StyleResolverState&);
- static void applyValue{{property_id}}(StyleResolverState&, CSSValue*);
+ static void applyValue{{property_id}}(StyleResolverState&, CSSValue);
{% endfor %}
};

Powered by Google App Engine
This is Rietveld 408576698