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

Unified Diff: third_party/WebKit/Source/web/PopupMenuImpl.cpp

Issue 2370673002: Changed EDisplay to an enum class and renamed its members to be keywords (Closed)
Patch Set: Comment Created 4 years, 3 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
« no previous file with comments | « third_party/WebKit/Source/modules/accessibility/AXObject.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/PopupMenuImpl.cpp
diff --git a/third_party/WebKit/Source/web/PopupMenuImpl.cpp b/third_party/WebKit/Source/web/PopupMenuImpl.cpp
index 39d7b80a7bac4561f131de5fbb5c7e609133d4b5..078a76e18358150cda2f7474862eba53fa6344cf 100644
--- a/third_party/WebKit/Source/web/PopupMenuImpl.cpp
+++ b/third_party/WebKit/Source/web/PopupMenuImpl.cpp
@@ -297,7 +297,7 @@ void PopupMenuImpl::addElementStyle(ItemIterationContext& context, HTMLElement&
PagePopupClient::addString("style: {\n", data);
if (style->visibility() == EVisibility::Hidden)
addProperty("visibility", String("hidden"), data);
- if (style->display() == NONE)
+ if (style->display() == EDisplay::None)
addProperty("display", String("none"), data);
const ComputedStyle& baseStyle = context.baseStyle();
if (baseStyle.direction() != style->direction())
« no previous file with comments | « third_party/WebKit/Source/modules/accessibility/AXObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698