| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef StubChromeClientForSPv2_h | 5 #ifndef StubChromeClientForSPv2_h |
| 6 #define StubChromeClientForSPv2_h | 6 #define StubChromeClientForSPv2_h |
| 7 | 7 |
| 8 #include "core/loader/EmptyClients.h" | 8 #include "core/loader/EmptyClients.h" |
| 9 #include "platform/graphics/compositing/PaintArtifactCompositor.h" | 9 #include "platform/graphics/compositing/PaintArtifactCompositor.h" |
| 10 #include "platform/testing/WebLayerTreeViewImplForTesting.h" | 10 #include "platform/testing/WebLayerTreeViewImplForTesting.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 // A simple ChromeClient implementation which forwards painted artifacts to a | 14 // A simple ChromeClient implementation which forwards painted artifacts to a |
| 15 // PaintArtifactCompositor attached to a testing WebLayerTreeView, and permits | 15 // PaintArtifactCompositor attached to a testing WebLayerTreeView, and permits |
| 16 // simple analysis of the results. | 16 // simple analysis of the results. |
| 17 class StubChromeClientForSPv2 : public EmptyChromeClient { | 17 class StubChromeClientForSPv2 : public EmptyChromeClient { |
| 18 public: | 18 public: |
| 19 StubChromeClientForSPv2(WebLayerTreeViewImplForTesting::LayerListPolicy laye
rListPolicy) | 19 StubChromeClientForSPv2() : m_layerTreeView() |
| 20 : m_layerTreeView(layerListPolicy) | |
| 21 { | 20 { |
| 22 m_layerTreeView.setRootLayer(*m_paintArtifactCompositor.getWebLayer()); | 21 m_layerTreeView.setRootLayer(*m_paintArtifactCompositor.getWebLayer()); |
| 23 } | 22 } |
| 24 | 23 |
| 25 bool hasLayer(const WebLayer& layer) { return m_layerTreeView.hasLayer(layer
); } | 24 bool hasLayer(const WebLayer& layer) { return m_layerTreeView.hasLayer(layer
); } |
| 26 | 25 |
| 27 // ChromeClient | 26 // ChromeClient |
| 28 void didPaint(const PaintArtifact& artifact) override | 27 void didPaint(const PaintArtifact& artifact) override |
| 29 { | 28 { |
| 30 m_paintArtifactCompositor.update(artifact); | 29 m_paintArtifactCompositor.update(artifact); |
| 31 } | 30 } |
| 32 | 31 |
| 33 private: | 32 private: |
| 34 WebLayerTreeViewImplForTesting m_layerTreeView; | 33 WebLayerTreeViewImplForTesting m_layerTreeView; |
| 35 PaintArtifactCompositor m_paintArtifactCompositor; | 34 PaintArtifactCompositor m_paintArtifactCompositor; |
| 36 }; | 35 }; |
| 37 | 36 |
| 38 } // namespace blink | 37 } // namespace blink |
| 39 | 38 |
| 40 #endif // StubChromeClientForSPv2_h | 39 #endif // StubChromeClientForSPv2_h |
| OLD | NEW |