| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/paint/FramePainter.h" | 5 #include "core/paint/FramePainter.h" |
| 6 | 6 |
| 7 #include "core/editing/markers/DocumentMarkerController.h" | 7 #include "core/editing/markers/DocumentMarkerController.h" |
| 8 #include "core/frame/FrameView.h" | 8 #include "core/frame/FrameView.h" |
| 9 #include "core/inspector/InspectorInstrumentation.h" | |
| 10 #include "core/inspector/InspectorTraceEvents.h" | 9 #include "core/inspector/InspectorTraceEvents.h" |
| 11 #include "core/layout/LayoutView.h" | 10 #include "core/layout/LayoutView.h" |
| 12 #include "core/page/Page.h" | 11 #include "core/page/Page.h" |
| 13 #include "core/paint/LayoutObjectDrawingRecorder.h" | 12 #include "core/paint/LayoutObjectDrawingRecorder.h" |
| 14 #include "core/paint/PaintInfo.h" | 13 #include "core/paint/PaintInfo.h" |
| 15 #include "core/paint/PaintLayer.h" | 14 #include "core/paint/PaintLayer.h" |
| 16 #include "core/paint/PaintLayerPainter.h" | 15 #include "core/paint/PaintLayerPainter.h" |
| 17 #include "core/paint/ScrollbarPainter.h" | 16 #include "core/paint/ScrollbarPainter.h" |
| 18 #include "core/paint/TransformRecorder.h" | 17 #include "core/paint/TransformRecorder.h" |
| 18 #include "core/probe/CoreProbes.h" |
| 19 #include "platform/fonts/FontCache.h" | 19 #include "platform/fonts/FontCache.h" |
| 20 #include "platform/graphics/GraphicsContext.h" | 20 #include "platform/graphics/GraphicsContext.h" |
| 21 #include "platform/graphics/paint/ClipRecorder.h" | 21 #include "platform/graphics/paint/ClipRecorder.h" |
| 22 #include "platform/graphics/paint/ScopedPaintChunkProperties.h" | 22 #include "platform/graphics/paint/ScopedPaintChunkProperties.h" |
| 23 #include "platform/loader/fetch/MemoryCache.h" | 23 #include "platform/loader/fetch/MemoryCache.h" |
| 24 #include "platform/scroll/ScrollbarTheme.h" | 24 #include "platform/scroll/ScrollbarTheme.h" |
| 25 | 25 |
| 26 namespace blink { | 26 namespace blink { |
| 27 | 27 |
| 28 bool FramePainter::s_inPaintContents = false; | 28 bool FramePainter::s_inPaintContents = false; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 | 254 |
| 255 bar.paint(context, CullRect(rect)); | 255 bar.paint(context, CullRect(rect)); |
| 256 } | 256 } |
| 257 | 257 |
| 258 const FrameView& FramePainter::frameView() { | 258 const FrameView& FramePainter::frameView() { |
| 259 DCHECK(m_frameView); | 259 DCHECK(m_frameView); |
| 260 return *m_frameView; | 260 return *m_frameView; |
| 261 } | 261 } |
| 262 | 262 |
| 263 } // namespace blink | 263 } // namespace blink |
| OLD | NEW |