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: Source/core/layout/line/AbstractInlineTextBox.h

Issue 1055683008: Rename variable name from renderText to layoutText (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « Source/core/layout/LayoutText.cpp ('k') | Source/core/layout/line/AbstractInlineTextBox.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/line/AbstractInlineTextBox.h
diff --git a/Source/core/layout/line/AbstractInlineTextBox.h b/Source/core/layout/line/AbstractInlineTextBox.h
index 6269c9468e858d9f9508a3ed59fc721a17f70707..fae2fb830e56c1123c581d1a73cd11777aece69b 100644
--- a/Source/core/layout/line/AbstractInlineTextBox.h
+++ b/Source/core/layout/line/AbstractInlineTextBox.h
@@ -47,8 +47,8 @@ class InlineTextBox;
// get information about InlineTextBoxes without tight coupling.
class CORE_EXPORT AbstractInlineTextBox : public RefCounted<AbstractInlineTextBox> {
private:
- AbstractInlineTextBox(LayoutText* renderText, InlineTextBox* inlineTextBox)
- : m_renderText(renderText)
+ AbstractInlineTextBox(LayoutText* layoutText, InlineTextBox* inlineTextBox)
+ : m_renderText(layoutText)
, m_inlineTextBox(inlineTextBox)
{
}
@@ -73,7 +73,7 @@ public:
BottomToTop
};
- LayoutText* renderText() const { return m_renderText; }
+ LayoutText* layoutText() const { return m_renderText; }
PassRefPtr<AbstractInlineTextBox> nextInlineTextBox() const;
LayoutRect bounds() const;
« no previous file with comments | « Source/core/layout/LayoutText.cpp ('k') | Source/core/layout/line/AbstractInlineTextBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698