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

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

Issue 1308093002: Fix typo: LayoutObject -> pagedFlowThread (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutPagedFlowThread.cpp
diff --git a/Source/core/layout/LayoutPagedFlowThread.cpp b/Source/core/layout/LayoutPagedFlowThread.cpp
index 895f7ef044e529d96d7442e0ae4f89d57600cfe3..413f2701af476bbd8f4a6d4882d1159c02311772 100644
--- a/Source/core/layout/LayoutPagedFlowThread.cpp
+++ b/Source/core/layout/LayoutPagedFlowThread.cpp
@@ -11,10 +11,10 @@ namespace blink {
LayoutPagedFlowThread* LayoutPagedFlowThread::createAnonymous(Document& document, const ComputedStyle& parentStyle)
{
- LayoutPagedFlowThread* LayoutObject = new LayoutPagedFlowThread();
- LayoutObject->setDocumentForAnonymous(&document);
- LayoutObject->setStyle(ComputedStyle::createAnonymousStyleWithDisplay(parentStyle, BLOCK));
- return LayoutObject;
+ LayoutPagedFlowThread* pagedFlowThread = new LayoutPagedFlowThread();
+ pagedFlowThread->setDocumentForAnonymous(&document);
+ pagedFlowThread->setStyle(ComputedStyle::createAnonymousStyleWithDisplay(parentStyle, BLOCK));
+ return pagedFlowThread;
}
int LayoutPagedFlowThread::pageCount()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698