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

Unified Diff: Source/core/css/InspectorCSSOMWrappers.cpp

Issue 15797004: Cleanup WebKit prefixed names for classes in css directory. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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/core/css/InspectorCSSOMWrappers.cpp
diff --git a/Source/core/css/InspectorCSSOMWrappers.cpp b/Source/core/css/InspectorCSSOMWrappers.cpp
index 8877e00160515b8f7a4c5aad8b9fb099f718738f..a84449a2de45cfd76a6645a3d9f07dfff4fc3d31 100644
--- a/Source/core/css/InspectorCSSOMWrappers.cpp
+++ b/Source/core/css/InspectorCSSOMWrappers.cpp
@@ -33,12 +33,12 @@
#include "core/css/CSSHostRule.h"
#include "core/css/CSSImportRule.h"
#include "core/css/CSSMediaRule.h"
+#include "core/css/CSSRegionRule.h"
#include "core/css/CSSRule.h"
#include "core/css/CSSStyleRule.h"
#include "core/css/CSSStyleSheet.h"
#include "core/css/CSSSupportsRule.h"
#include "core/css/StyleSheetContents.h"
-#include "core/css/WebKitCSSRegionRule.h"
#include "core/dom/DocumentStyleSheetCollection.h"
#include <wtf/MemoryInstrumentationHashMap.h>
@@ -77,7 +77,7 @@ void InspectorCSSOMWrappers::collect(ListType* listType)
collect(static_cast<CSSSupportsRule*>(cssRule));
break;
case CSSRule::WEBKIT_REGION_RULE:
- collect(static_cast<WebKitCSSRegionRule*>(cssRule));
+ collect(static_cast<CSSRegionRule*>(cssRule));
break;
case CSSRule::HOST_RULE:
collect(static_cast<CSSHostRule*>(cssRule));

Powered by Google App Engine
This is Rietveld 408576698