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

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

Issue 721413004: Remove includes of GraphicsContextAnnotator.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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 | « no previous file | Source/core/rendering/RenderInline.cpp » ('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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2007 David Smith (catfish.man@gmail.com) 4 * (C) 2007 David Smith (catfish.man@gmail.com)
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 23 matching lines...) Expand all
34 #include "core/editing/FrameSelection.h" 34 #include "core/editing/FrameSelection.h"
35 #include "core/events/OverflowEvent.h" 35 #include "core/events/OverflowEvent.h"
36 #include "core/fetch/ResourceLoadPriorityOptimizer.h" 36 #include "core/fetch/ResourceLoadPriorityOptimizer.h"
37 #include "core/frame/FrameView.h" 37 #include "core/frame/FrameView.h"
38 #include "core/frame/LocalFrame.h" 38 #include "core/frame/LocalFrame.h"
39 #include "core/frame/Settings.h" 39 #include "core/frame/Settings.h"
40 #include "core/page/Page.h" 40 #include "core/page/Page.h"
41 #include "core/paint/BlockPainter.h" 41 #include "core/paint/BlockPainter.h"
42 #include "core/paint/BoxPainter.h" 42 #include "core/paint/BoxPainter.h"
43 #include "core/paint/DrawingRecorder.h" 43 #include "core/paint/DrawingRecorder.h"
44 #include "core/rendering/GraphicsContextAnnotator.h"
45 #include "core/rendering/HitTestLocation.h" 44 #include "core/rendering/HitTestLocation.h"
46 #include "core/rendering/HitTestResult.h" 45 #include "core/rendering/HitTestResult.h"
47 #include "core/rendering/InlineIterator.h" 46 #include "core/rendering/InlineIterator.h"
48 #include "core/rendering/InlineTextBox.h" 47 #include "core/rendering/InlineTextBox.h"
49 #include "core/rendering/PaintInfo.h" 48 #include "core/rendering/PaintInfo.h"
50 #include "core/rendering/RenderCombineText.h" 49 #include "core/rendering/RenderCombineText.h"
51 #include "core/rendering/RenderDeprecatedFlexibleBox.h" 50 #include "core/rendering/RenderDeprecatedFlexibleBox.h"
52 #include "core/rendering/RenderFlexibleBox.h" 51 #include "core/rendering/RenderFlexibleBox.h"
53 #include "core/rendering/RenderFlowThread.h" 52 #include "core/rendering/RenderFlowThread.h"
54 #include "core/rendering/RenderGrid.h" 53 #include "core/rendering/RenderGrid.h"
55 #include "core/rendering/RenderInline.h" 54 #include "core/rendering/RenderInline.h"
56 #include "core/rendering/RenderLayer.h" 55 #include "core/rendering/RenderLayer.h"
57 #include "core/rendering/RenderObjectInlines.h" 56 #include "core/rendering/RenderObjectInlines.h"
58 #include "core/rendering/RenderRegion.h" 57 #include "core/rendering/RenderRegion.h"
59 #include "core/rendering/RenderTableCell.h" 58 #include "core/rendering/RenderTableCell.h"
60 #include "core/rendering/RenderTextControl.h" 59 #include "core/rendering/RenderTextControl.h"
61 #include "core/rendering/RenderTextFragment.h" 60 #include "core/rendering/RenderTextFragment.h"
62 #include "core/rendering/RenderTheme.h" 61 #include "core/rendering/RenderTheme.h"
63 #include "core/rendering/RenderView.h" 62 #include "core/rendering/RenderView.h"
64 #include "core/rendering/TextAutosizer.h" 63 #include "core/rendering/TextAutosizer.h"
65 #include "core/rendering/shapes/ShapeOutsideInfo.h" 64 #include "core/rendering/shapes/ShapeOutsideInfo.h"
66 #include "core/rendering/style/ContentData.h" 65 #include "core/rendering/style/ContentData.h"
67 #include "core/rendering/style/RenderStyle.h" 66 #include "core/rendering/style/RenderStyle.h"
68 #include "platform/geometry/FloatQuad.h" 67 #include "platform/geometry/FloatQuad.h"
69 #include "platform/geometry/TransformState.h" 68 #include "platform/geometry/TransformState.h"
70 #include "platform/graphics/GraphicsContextCullSaver.h"
71 #include "platform/graphics/GraphicsContextStateSaver.h"
72 #include "wtf/StdLibExtras.h" 69 #include "wtf/StdLibExtras.h"
73 #include "wtf/TemporaryChange.h" 70 #include "wtf/TemporaryChange.h"
74 71
75 using namespace WTF; 72 using namespace WTF;
76 using namespace Unicode; 73 using namespace Unicode;
77 74
78 namespace blink { 75 namespace blink {
79 76
80 using namespace HTMLNames; 77 using namespace HTMLNames;
81 78
(...skipping 4336 matching lines...) Expand 10 before | Expand all | Expand 10 after
4418 void RenderBlock::showLineTreeAndMark(const InlineBox* markedBox1, const char* m arkedLabel1, const InlineBox* markedBox2, const char* markedLabel2, const Render Object* obj) const 4415 void RenderBlock::showLineTreeAndMark(const InlineBox* markedBox1, const char* m arkedLabel1, const InlineBox* markedBox2, const char* markedLabel2, const Render Object* obj) const
4419 { 4416 {
4420 showRenderObject(); 4417 showRenderObject();
4421 for (const RootInlineBox* root = firstRootBox(); root; root = root->nextRoot Box()) 4418 for (const RootInlineBox* root = firstRootBox(); root; root = root->nextRoot Box())
4422 root->showLineTreeAndMark(markedBox1, markedLabel1, markedBox2, markedLa bel2, obj, 1); 4419 root->showLineTreeAndMark(markedBox1, markedLabel1, markedBox2, markedLa bel2, obj, 1);
4423 } 4420 }
4424 4421
4425 #endif 4422 #endif
4426 4423
4427 } // namespace blink 4424 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | Source/core/rendering/RenderInline.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698