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

Unified Diff: third_party/WebKit/Source/core/css/CSSRule.h

Issue 2068053002: Rename Blink constants generated from IDL files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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/CSSRule.h
diff --git a/third_party/WebKit/Source/core/css/CSSRule.h b/third_party/WebKit/Source/core/css/CSSRule.h
index 7c1db61c61f925916befd1859837f1bd04bed10e..89a2819e5e474319dc32cd476460d1e40cffb318 100644
--- a/third_party/WebKit/Source/core/css/CSSRule.h
+++ b/third_party/WebKit/Source/core/css/CSSRule.h
@@ -40,19 +40,19 @@ public:
virtual ~CSSRule() { }
enum Type {
- STYLE_RULE = 1,
- CHARSET_RULE = 2,
- IMPORT_RULE = 3,
- MEDIA_RULE = 4,
- FONT_FACE_RULE = 5,
- PAGE_RULE = 6,
- KEYFRAMES_RULE = 7,
- WEBKIT_KEYFRAMES_RULE = KEYFRAMES_RULE,
- KEYFRAME_RULE = 8,
- WEBKIT_KEYFRAME_RULE = KEYFRAME_RULE,
- NAMESPACE_RULE = 10,
- SUPPORTS_RULE = 12,
- VIEWPORT_RULE = 15,
+ kStyleRule = 1,
+ kCharsetRule = 2,
+ kImportRule = 3,
+ kMediaRule = 4,
+ kFontFaceRule = 5,
+ kPageRule = 6,
+ kKeyframesRule = 7,
+ kWebkitKeyframesRule = kKeyframesRule,
+ kKeyframeRule = 8,
+ kWebkitKeyframeRule = kKeyframeRule,
+ kNamespaceRule = 10,
+ kSupportsRule = 12,
+ kViewportRule = 15,
};
virtual Type type() const = 0;
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp ('k') | third_party/WebKit/Source/core/css/CSSStyleDeclarationTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698