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

Unified Diff: third_party/WebKit/Source/core/dom/Document.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/dom/Document.cpp
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
index 15bb79a2e478a3ef05664e29be03019198267300..f42226205775d7df98216f125d44c20a63f005cc 100644
--- a/third_party/WebKit/Source/core/dom/Document.cpp
+++ b/third_party/WebKit/Source/core/dom/Document.cpp
@@ -2265,7 +2265,7 @@ PassRefPtr<ComputedStyle> Document::styleForPage(int pageIndex) {
bool Document::isPageBoxVisible(int pageIndex) {
return styleForPage(pageIndex)->visibility() !=
- EVisibility::Hidden; // display property doesn't apply to @page.
+ EVisibility::kHidden; // display property doesn't apply to @page.
}
void Document::pageSizeAndMarginsInPixels(int pageIndex,

Powered by Google App Engine
This is Rietveld 408576698