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

Unified Diff: third_party/WebKit/Source/build/scripts/make_css_property_names.py

Issue 1896893004: Hook up style invalidation for CSS Paint API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@css-paint-register
Patch Set: rebase. Created 4 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: third_party/WebKit/Source/build/scripts/make_css_property_names.py
diff --git a/third_party/WebKit/Source/build/scripts/make_css_property_names.py b/third_party/WebKit/Source/build/scripts/make_css_property_names.py
index e4b72bc6bea6c3ad612a73d05d7dace4fe8952a1..4b3ad32f9579f269990fb27c62017b2463573257 100755
--- a/third_party/WebKit/Source/build/scripts/make_css_property_names.py
+++ b/third_party/WebKit/Source/build/scripts/make_css_property_names.py
@@ -14,6 +14,7 @@ HEADER_TEMPLATE = """
#ifndef %(class_name)s_h
#define %(class_name)s_h
+#include "core/CoreExport.h"
#include "core/css/parser/CSSParserMode.h"
#include "wtf/HashFunctions.h"
#include "wtf/HashTraits.h"
@@ -60,7 +61,7 @@ inline bool isPropertyAlias(CSSPropertyID id) { return id & 512; }
CSSPropertyID unresolvedCSSPropertyID(const WTF::String&);
-CSSPropertyID cssPropertyID(const WTF::String&);
+CSSPropertyID CORE_EXPORT cssPropertyID(const WTF::String&);
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698