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

Side by Side Diff: Source/core/rendering/FlowThreadController.cpp

Issue 20253002: core/rendering: Include wtf files using "wtf/foo.h" form. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixes Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/FlowThreadController.h ('k') | Source/core/rendering/HitTestLocation.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above 8 * 1. Redistributions of source code must retain the above
9 * copyright notice, this list of conditions and the following 9 * copyright notice, this list of conditions and the following
10 * disclaimer. 10 * disclaimer.
(...skipping 16 matching lines...) Expand all
27 * SUCH DAMAGE. 27 * SUCH DAMAGE.
28 */ 28 */
29 29
30 #include "config.h" 30 #include "config.h"
31 31
32 #include "core/rendering/FlowThreadController.h" 32 #include "core/rendering/FlowThreadController.h"
33 33
34 #include "core/dom/NamedFlowCollection.h" 34 #include "core/dom/NamedFlowCollection.h"
35 #include "core/rendering/RenderFlowThread.h" 35 #include "core/rendering/RenderFlowThread.h"
36 #include "core/rendering/RenderNamedFlowThread.h" 36 #include "core/rendering/RenderNamedFlowThread.h"
37 #include <wtf/text/AtomicString.h> 37 #include "wtf/text/AtomicString.h"
38 38
39 namespace WebCore { 39 namespace WebCore {
40 40
41 PassOwnPtr<FlowThreadController> FlowThreadController::create(RenderView* view) 41 PassOwnPtr<FlowThreadController> FlowThreadController::create(RenderView* view)
42 { 42 {
43 return adoptPtr(new FlowThreadController(view)); 43 return adoptPtr(new FlowThreadController(view));
44 } 44 }
45 45
46 FlowThreadController::FlowThreadController(RenderView* view) 46 FlowThreadController::FlowThreadController(RenderView* view)
47 : m_view(view) 47 : m_view(view)
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 for (RenderNamedFlowThreadList::iterator iter = m_renderNamedFlowThreadList- >begin(); iter != m_renderNamedFlowThreadList->end(); ++iter) { 239 for (RenderNamedFlowThreadList::iterator iter = m_renderNamedFlowThreadList- >begin(); iter != m_renderNamedFlowThreadList->end(); ++iter) {
240 if (!(*iter)->isAutoLogicalHeightRegionsCountConsistent()) 240 if (!(*iter)->isAutoLogicalHeightRegionsCountConsistent())
241 return false; 241 return false;
242 } 242 }
243 243
244 return true; 244 return true;
245 } 245 }
246 #endif 246 #endif
247 247
248 } // namespace WebCore 248 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/FlowThreadController.h ('k') | Source/core/rendering/HitTestLocation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698