OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * | 10 * |
(...skipping 17 matching lines...) Expand all Loading... |
28 | 28 |
29 #include "web/PageOverlay.h" | 29 #include "web/PageOverlay.h" |
30 | 30 |
31 #include "core/frame/FrameHost.h" | 31 #include "core/frame/FrameHost.h" |
32 #include "core/frame/Settings.h" | 32 #include "core/frame/Settings.h" |
33 #include "core/page/Page.h" | 33 #include "core/page/Page.h" |
34 #include "core/page/scrolling/ScrollingCoordinator.h" | 34 #include "core/page/scrolling/ScrollingCoordinator.h" |
35 #include "platform/graphics/GraphicsContext.h" | 35 #include "platform/graphics/GraphicsContext.h" |
36 #include "platform/graphics/GraphicsLayer.h" | 36 #include "platform/graphics/GraphicsLayer.h" |
37 #include "platform/graphics/GraphicsLayerClient.h" | 37 #include "platform/graphics/GraphicsLayerClient.h" |
| 38 #include "platform/graphics/GraphicsScreen.h" |
38 #include "public/platform/WebLayer.h" | 39 #include "public/platform/WebLayer.h" |
39 #include "public/web/WebViewClient.h" | 40 #include "public/web/WebViewClient.h" |
40 #include "web/WebDevToolsAgentImpl.h" | 41 #include "web/WebDevToolsAgentImpl.h" |
41 #include "web/WebViewImpl.h" | 42 #include "web/WebViewImpl.h" |
42 | 43 |
43 namespace blink { | 44 namespace blink { |
44 | 45 |
45 PassOwnPtr<PageOverlay> PageOverlay::create(WebViewImpl* viewImpl, PageOverlay::
Delegate* delegate) | 46 PassOwnPtr<PageOverlay> PageOverlay::create(WebViewImpl* viewImpl, PageOverlay::
Delegate* delegate) |
46 { | 47 { |
47 return adoptPtr(new PageOverlay(viewImpl, delegate)); | 48 return adoptPtr(new PageOverlay(viewImpl, delegate)); |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 m_layer->setNeedsDisplay(); | 97 m_layer->setNeedsDisplay(); |
97 } | 98 } |
98 | 99 |
99 IntRect PageOverlay::computeInterestRect(const GraphicsLayer* graphicsLayer, con
st IntRect&) const | 100 IntRect PageOverlay::computeInterestRect(const GraphicsLayer* graphicsLayer, con
st IntRect&) const |
100 { | 101 { |
101 return IntRect(IntPoint(), expandedIntSize(m_layer->size())); | 102 return IntRect(IntPoint(), expandedIntSize(m_layer->size())); |
102 } | 103 } |
103 | 104 |
104 void PageOverlay::paintContents(const GraphicsLayer* graphicsLayer, GraphicsCont
ext& gc, GraphicsLayerPaintingPhase phase, const IntRect& interestRect) const | 105 void PageOverlay::paintContents(const GraphicsLayer* graphicsLayer, GraphicsCont
ext& gc, GraphicsLayerPaintingPhase phase, const IntRect& interestRect) const |
105 { | 106 { |
106 ASSERT(m_layer); | 107 WillPaintForDevice device(Page::screenId(m_viewImpl->page())); |
| 108 |
| 109 ASSERT(m_viewImpl->page() && m_layer); |
107 m_delegate->paintPageOverlay(*this, gc, interestRect.size()); | 110 m_delegate->paintPageOverlay(*this, gc, interestRect.size()); |
108 } | 111 } |
109 | 112 |
110 String PageOverlay::debugName(const GraphicsLayer*) const | 113 String PageOverlay::debugName(const GraphicsLayer*) const |
111 { | 114 { |
112 return "WebViewImpl Page Overlay Content Layer"; | 115 return "WebViewImpl Page Overlay Content Layer"; |
113 } | 116 } |
114 | 117 |
115 } // namespace blink | 118 } // namespace blink |
OLD | NEW |