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

Unified Diff: third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp

Issue 2614883007: Change computed style enums to be prefixed with 'k'. (Closed)
Patch Set: Rebase on ToT. Created 3 years, 11 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/modules/plugins/PluginOcclusionSupport.cpp
diff --git a/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp b/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
index ece11f530e4ea7cb904157b9db48665d2a287efb..55c60c4c3215727848c0aa1daed7e9be25e6cd0f 100644
--- a/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
+++ b/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
@@ -120,7 +120,7 @@ static bool intersectsRect(const LayoutObject* renderer, const IntRect& rect) {
return renderer->absoluteBoundingBoxRectIgnoringTransforms().intersects(
rect) &&
(!renderer->style() ||
- renderer->style()->visibility() == EVisibility::Visible);
+ renderer->style()->visibility() == EVisibility::kVisible);
}
static void addToOcclusions(const LayoutBox* renderer,

Powered by Google App Engine
This is Rietveld 408576698