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

Unified Diff: Source/core/layout/LayoutCounter.cpp

Issue 940373003: Rename RenderText to LayoutText (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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/LayoutCounter.h ('k') | Source/core/layout/LayoutInline.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutCounter.cpp
diff --git a/Source/core/layout/LayoutCounter.cpp b/Source/core/layout/LayoutCounter.cpp
index 327569d18ba3026f04e084fee35d4328e9474d3f..49d33d7b7b96bd54335901ecadd18b87e69e1a84 100644
--- a/Source/core/layout/LayoutCounter.cpp
+++ b/Source/core/layout/LayoutCounter.cpp
@@ -345,7 +345,7 @@ static CounterNode* makeCounterNode(LayoutObject& object, const AtomicString& id
}
LayoutCounter::LayoutCounter(Document* node, const CounterContent& counter)
- : RenderText(node, StringImpl::empty())
+ : LayoutText(node, StringImpl::empty())
, m_counter(counter)
, m_counterNode(0)
, m_nextForSameCounter(0)
@@ -363,14 +363,14 @@ void LayoutCounter::destroy()
m_counterNode->removeRenderer(this);
ASSERT(!m_counterNode);
}
- RenderText::destroy();
+ LayoutText::destroy();
}
void LayoutCounter::willBeDestroyed()
{
if (view())
view()->removeLayoutCounter();
- RenderText::willBeDestroyed();
+ LayoutText::willBeDestroyed();
}
const char* LayoutCounter::renderName() const
« no previous file with comments | « Source/core/layout/LayoutCounter.h ('k') | Source/core/layout/LayoutInline.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698