| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 String debugName() const final { return "PageOverlay"; } | 71 String debugName() const final { return "PageOverlay"; } |
| 72 LayoutRect visualRect() const override; | 72 LayoutRect visualRect() const override; |
| 73 | 73 |
| 74 // GraphicsLayerClient implementation | 74 // GraphicsLayerClient implementation |
| 75 bool needsRepaint(const GraphicsLayer&) const { return true; } | 75 bool needsRepaint(const GraphicsLayer&) const { return true; } |
| 76 IntRect computeInterestRect(const GraphicsLayer*, const IntRect&) const over
ride; | 76 IntRect computeInterestRect(const GraphicsLayer*, const IntRect&) const over
ride; |
| 77 void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPain
tingPhase, const IntRect& interestRect) const override; | 77 void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPain
tingPhase, const IntRect& interestRect) const override; |
| 78 String debugName(const GraphicsLayer*) const override; | 78 String debugName(const GraphicsLayer*) const override; |
| 79 | 79 |
| 80 private: | 80 private: |
| 81 DISPLAY_ITEM_CACHE_STATUS_UNCACHEABLE_IMPLEMENTATION |
| 82 |
| 81 PageOverlay(WebViewImpl*, PageOverlay::Delegate*); | 83 PageOverlay(WebViewImpl*, PageOverlay::Delegate*); |
| 82 | 84 |
| 83 WebViewImpl* m_viewImpl; | 85 WebViewImpl* m_viewImpl; |
| 84 Persistent<PageOverlay::Delegate> m_delegate; | 86 Persistent<PageOverlay::Delegate> m_delegate; |
| 85 OwnPtr<GraphicsLayer> m_layer; | 87 OwnPtr<GraphicsLayer> m_layer; |
| 86 }; | 88 }; |
| 87 | 89 |
| 88 } // namespace blink | 90 } // namespace blink |
| 89 | 91 |
| 90 #endif // PageOverlay_h | 92 #endif // PageOverlay_h |
| OLD | NEW |