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

Unified Diff: third_party/WebKit/Source/core/paint/FileUploadControlPainter.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/core/paint/FileUploadControlPainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/FileUploadControlPainter.cpp b/third_party/WebKit/Source/core/paint/FileUploadControlPainter.cpp
index 0dab0a98e6e9b13c5b7ef5ea3e4f39431f219dbb..9ef6246c246db99fcc02c76c615784240e1d943b 100644
--- a/third_party/WebKit/Source/core/paint/FileUploadControlPainter.cpp
+++ b/third_party/WebKit/Source/core/paint/FileUploadControlPainter.cpp
@@ -18,7 +18,7 @@ const int buttonShadowHeight = 2;
void FileUploadControlPainter::paintObject(const PaintInfo& paintInfo,
const LayoutPoint& paintOffset) {
- if (m_layoutFileUploadControl.style()->visibility() != EVisibility::Visible)
+ if (m_layoutFileUploadControl.style()->visibility() != EVisibility::kVisible)
return;
// Push a clip.

Powered by Google App Engine
This is Rietveld 408576698