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

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

Issue 2890743003: Do not use overridden getter names for internal getters. (Closed)
Patch Set: Created 3 years, 7 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 2d3e107e091833e5fc70b53a95b1843792a871e0..47d19056c767f0e9ba62b6190e32f31188806fb9 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -1484,7 +1484,7 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
return TextDecoration::kNone;
}
TextDecoration GetTextDecoration() const {
- return static_cast<TextDecoration>(GetTextDecorationInternal());
+ return static_cast<TextDecoration>(TextDecorationInternal());
}
void SetTextDecoration(TextDecoration v) { SetTextDecorationInternal(v); }

Powered by Google App Engine
This is Rietveld 408576698