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

Side by Side Diff: Source/core/layout/line/InlineFlowBox.cpp

Issue 1230643006: Update inclusion of GraphicsContextStateSaver.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 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 20 matching lines...) Expand all
31 #include "core/layout/LayoutRubyRun.h" 31 #include "core/layout/LayoutRubyRun.h"
32 #include "core/layout/LayoutRubyText.h" 32 #include "core/layout/LayoutRubyText.h"
33 #include "core/layout/LayoutView.h" 33 #include "core/layout/LayoutView.h"
34 #include "core/layout/line/GlyphOverflow.h" 34 #include "core/layout/line/GlyphOverflow.h"
35 #include "core/layout/line/InlineTextBox.h" 35 #include "core/layout/line/InlineTextBox.h"
36 #include "core/layout/line/RootInlineBox.h" 36 #include "core/layout/line/RootInlineBox.h"
37 #include "core/paint/BoxPainter.h" 37 #include "core/paint/BoxPainter.h"
38 #include "core/paint/InlineFlowBoxPainter.h" 38 #include "core/paint/InlineFlowBoxPainter.h"
39 #include "core/style/ShadowList.h" 39 #include "core/style/ShadowList.h"
40 #include "platform/fonts/Font.h" 40 #include "platform/fonts/Font.h"
41 #include "platform/graphics/GraphicsContextStateSaver.h"
42 41
43 #include <math.h> 42 #include <math.h>
44 43
45 namespace blink { 44 namespace blink {
46 45
47 struct SameSizeAsInlineFlowBox : public InlineBox { 46 struct SameSizeAsInlineFlowBox : public InlineBox {
48 void* pointers[5]; 47 void* pointers[5];
49 uint32_t bitfields : 23; 48 uint32_t bitfields : 23;
50 }; 49 };
51 50
(...skipping 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1309 ASSERT(child->prevOnLine() == prev); 1308 ASSERT(child->prevOnLine() == prev);
1310 prev = child; 1309 prev = child;
1311 } 1310 }
1312 ASSERT(prev == m_lastChild); 1311 ASSERT(prev == m_lastChild);
1313 #endif 1312 #endif
1314 } 1313 }
1315 1314
1316 #endif 1315 #endif
1317 1316
1318 } // namespace blink 1317 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutTableCell.cpp ('k') | Source/core/paint/DeprecatedPaintLayerScrollableArea.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698