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

Unified Diff: Source/core/html/HTMLWBRElement.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/dom/PseudoElement.cpp ('k') | Source/core/layout/LayoutQuote.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLWBRElement.cpp
diff --git a/Source/core/html/HTMLWBRElement.cpp b/Source/core/html/HTMLWBRElement.cpp
index e3a1f5dec01e22932a87c89a23b2ebd0bbd91127..b941f92353ff8a0969bd866a5c8aad45151dda0c 100644
--- a/Source/core/html/HTMLWBRElement.cpp
+++ b/Source/core/html/HTMLWBRElement.cpp
@@ -32,7 +32,7 @@
#include "core/html/HTMLWBRElement.h"
#include "core/HTMLNames.h"
-#include "core/rendering/RenderWordBreak.h"
+#include "core/layout/LayoutWordBreak.h"
namespace blink {
@@ -47,7 +47,7 @@ DEFINE_NODE_FACTORY(HTMLWBRElement)
LayoutObject* HTMLWBRElement::createRenderer(const LayoutStyle& style)
{
- return new RenderWordBreak(this);
+ return new LayoutWordBreak(this);
}
}
« no previous file with comments | « Source/core/dom/PseudoElement.cpp ('k') | Source/core/layout/LayoutQuote.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698