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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.h

Issue 2658953004: Rename EOverflowAnchor values with k prefix. (Closed)
Patch Set: 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/style/ComputedStyle.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index f8b0e9a0d2faec907584622e21be33ded96b1d73..db379a0e730518be4dd1c22eff81d780b1d1ed27 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -1479,7 +1479,7 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
// Overflow properties.
// overflow-anchor
static EOverflowAnchor initialOverflowAnchor() {
- return EOverflowAnchor::Auto;
+ return EOverflowAnchor::kAuto;
}
EOverflowAnchor overflowAnchor() const {
return static_cast<EOverflowAnchor>(m_nonInheritedData.m_overflowAnchor);

Powered by Google App Engine
This is Rietveld 408576698