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

Unified Diff: Source/core/layout/style/ContentData.cpp

Issue 934853002: Move and rename RenderQuote and RenderWordBreak. (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/LayoutWordBreak.cpp ('k') | Source/core/rendering/RenderQuote.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/style/ContentData.cpp
diff --git a/Source/core/layout/style/ContentData.cpp b/Source/core/layout/style/ContentData.cpp
index 03046f4538fb525ad8b114d9eb07e902bf4cdab1..3eff24611f47d2aef000cd295961016f94fb166f 100644
--- a/Source/core/layout/style/ContentData.cpp
+++ b/Source/core/layout/style/ContentData.cpp
@@ -26,8 +26,8 @@
#include "core/layout/LayoutImage.h"
#include "core/layout/LayoutImageResource.h"
#include "core/layout/LayoutImageResourceStyleImage.h"
+#include "core/layout/LayoutQuote.h"
#include "core/layout/style/LayoutStyle.h"
-#include "core/rendering/RenderQuote.h"
#include "core/rendering/RenderTextFragment.h"
namespace blink {
@@ -93,7 +93,7 @@ LayoutObject* CounterContentData::createRenderer(Document& doc, LayoutStyle& pse
LayoutObject* QuoteContentData::createRenderer(Document& doc, LayoutStyle& pseudoStyle) const
{
- LayoutObject* renderer = new RenderQuote(&doc, m_quote);
+ LayoutObject* renderer = new LayoutQuote(&doc, m_quote);
renderer->setPseudoStyle(&pseudoStyle);
return renderer;
}
« no previous file with comments | « Source/core/layout/LayoutWordBreak.cpp ('k') | Source/core/rendering/RenderQuote.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698