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

Side by Side Diff: Source/core/rendering/RootInlineBox.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/RenderView.h ('k') | Source/core/rendering/TableLayout.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) 2003, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 18 matching lines...) Expand all
29 #include "core/platform/text/BidiResolver.h" 29 #include "core/platform/text/BidiResolver.h"
30 #include "core/rendering/EllipsisBox.h" 30 #include "core/rendering/EllipsisBox.h"
31 #include "core/rendering/HitTestResult.h" 31 #include "core/rendering/HitTestResult.h"
32 #include "core/rendering/InlineTextBox.h" 32 #include "core/rendering/InlineTextBox.h"
33 #include "core/rendering/PaintInfo.h" 33 #include "core/rendering/PaintInfo.h"
34 #include "core/rendering/RenderArena.h" 34 #include "core/rendering/RenderArena.h"
35 #include "core/rendering/RenderBlock.h" 35 #include "core/rendering/RenderBlock.h"
36 #include "core/rendering/RenderFlowThread.h" 36 #include "core/rendering/RenderFlowThread.h"
37 #include "core/rendering/RenderView.h" 37 #include "core/rendering/RenderView.h"
38 #include "core/rendering/VerticalPositionCache.h" 38 #include "core/rendering/VerticalPositionCache.h"
39 #include <wtf/unicode/Unicode.h> 39 #include "wtf/unicode/Unicode.h"
40 40
41 using namespace std; 41 using namespace std;
42 42
43 namespace WebCore { 43 namespace WebCore {
44 44
45 struct SameSizeAsRootInlineBox : public InlineFlowBox { 45 struct SameSizeAsRootInlineBox : public InlineFlowBox {
46 unsigned variables[5]; 46 unsigned variables[5];
47 void* pointers[4]; 47 void* pointers[4];
48 }; 48 };
49 49
(...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after
990 } 990 }
991 991
992 #ifndef NDEBUG 992 #ifndef NDEBUG
993 const char* RootInlineBox::boxName() const 993 const char* RootInlineBox::boxName() const
994 { 994 {
995 return "RootInlineBox"; 995 return "RootInlineBox";
996 } 996 }
997 #endif 997 #endif
998 998
999 } // namespace WebCore 999 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderView.h ('k') | Source/core/rendering/TableLayout.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698