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

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

Issue 1774943003: blink: Rename platform/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-platform: rebase-yayyyyyyyy Created 4 years, 9 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 a9ebb4ae05069cb05ccd325dc34ffd4667bc15fc..75406228619594c82b794fadf12232bf3e6e0e0c 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -594,8 +594,8 @@ public:
bool isFixedTableLayout() const { return tableLayout() == TableLayoutFixed && !logicalWidth().isAuto(); }
const Font& font() const;
- const FontMetrics& fontMetrics() const;
- const FontDescription& fontDescription() const;
+ const FontMetrics& getFontMetrics() const;
+ const FontDescription& getFontDescription() const;
float specifiedFontSize() const;
float computedFontSize() const;
int fontSize() const;
@@ -865,7 +865,7 @@ public:
LineBreak getLineBreak() const { return static_cast<LineBreak>(rareInheritedData->lineBreak); }
const AtomicString& highlight() const { return rareInheritedData->highlight; }
const AtomicString& hyphenationString() const { return rareInheritedData->hyphenationString; }
- const AtomicString& locale() const { return fontDescription().locale(false); }
+ const AtomicString& locale() const { return getFontDescription().locale(false); }
EResize resize() const { return static_cast<EResize>(rareNonInheritedData->m_resize); }
bool hasInlinePaginationAxis() const
{
« no previous file with comments | « third_party/WebKit/Source/core/paint/TransformRecorder.cpp ('k') | third_party/WebKit/Source/core/style/ComputedStyle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698