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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTheme.cpp

Issue 2508743002: Changed EWhiteSpace to an enum class and renamed its members to keywords (Closed)
Patch Set: Small mac fix Created 4 years, 1 month 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/layout/LayoutTheme.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
index 9298c89c8facd84d8887391b0f39e790411b325d..ebdbf6c7e5d3212aec1680ba6ab05d7e53dd9bc6 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
@@ -165,7 +165,7 @@ void LayoutTheme::adjustStyle(ComputedStyle& style, Element* e) {
// Whitespace
if (m_platformTheme->controlRequiresPreWhiteSpace(part))
- style.setWhiteSpace(PRE);
+ style.setWhiteSpace(EWhiteSpace::Pre);
// Width / Height
// The width and height here are affected by the zoom.

Powered by Google App Engine
This is Rietveld 408576698