CacheStorage: Remove unused interfaces from CacheStorageListener
[chromium-blink-merge.git] / content / test / web_layer_tree_view_impl_for_testing.h
blobdb28812f0a0d870878d27b336cd3b5f347edc324
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_
6 #define CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "cc/trees/layer_tree_host_client.h"
10 #include "cc/trees/layer_tree_host_single_thread_client.h"
11 #include "third_party/WebKit/public/platform/WebLayerTreeView.h"
13 namespace cc {
14 class LayerTreeHost;
17 namespace blink { class WebLayer; }
19 namespace content {
21 class WebLayerTreeViewImplForTesting
22 : public blink::WebLayerTreeView,
23 public cc::LayerTreeHostClient,
24 public cc::LayerTreeHostSingleThreadClient {
25 public:
26 WebLayerTreeViewImplForTesting();
27 virtual ~WebLayerTreeViewImplForTesting();
29 void Initialize();
31 // blink::WebLayerTreeView implementation.
32 virtual void setRootLayer(const blink::WebLayer& layer);
33 virtual void clearRootLayer();
34 virtual void setViewportSize(const blink::WebSize& unused_deprecated,
35 const blink::WebSize& device_viewport_size);
36 virtual void setViewportSize(const blink::WebSize& device_viewport_size);
37 virtual blink::WebSize layoutViewportSize() const;
38 virtual blink::WebSize deviceViewportSize() const;
39 virtual void setDeviceScaleFactor(float scale_factor);
40 virtual float deviceScaleFactor() const;
41 virtual void setBackgroundColor(blink::WebColor);
42 virtual void setHasTransparentBackground(bool transparent);
43 virtual void setVisible(bool visible);
44 virtual void setPageScaleFactorAndLimits(float page_scale_factor,
45 float minimum,
46 float maximum);
47 virtual void startPageScaleAnimation(const blink::WebPoint& destination,
48 bool use_anchor,
49 float new_page_scale,
50 double duration_sec);
51 virtual void setNeedsAnimate();
52 virtual bool commitRequested() const;
53 virtual void didStopFlinging();
54 virtual void finishAllRendering();
55 virtual void setDeferCommits(bool defer_commits);
56 virtual void registerViewportLayers(
57 const blink::WebLayer* overscrollElasticityLayer,
58 const blink::WebLayer* pageScaleLayerLayer,
59 const blink::WebLayer* innerViewportScrollLayer,
60 const blink::WebLayer* outerViewportScrollLayer) override;
61 virtual void clearViewportLayers() override;
62 virtual void registerSelection(const blink::WebSelection& selection) override;
63 virtual void clearSelection() override;
65 // cc::LayerTreeHostClient implementation.
66 void WillBeginMainFrame() override {}
67 void DidBeginMainFrame() override {}
68 void BeginMainFrame(const cc::BeginFrameArgs& args) override {}
69 void BeginMainFrameNotExpectedSoon() override {}
70 void Layout() override;
71 void ApplyViewportDeltas(const gfx::Vector2dF& inner_delta,
72 const gfx::Vector2dF& outer_delta,
73 const gfx::Vector2dF& elastic_overscroll_delta,
74 float page_scale,
75 float top_controls_delta) override;
76 void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta,
77 float page_scale,
78 float top_controls_delta) override;
79 void RequestNewOutputSurface() override;
80 void DidInitializeOutputSurface() override {}
81 void DidFailToInitializeOutputSurface() override;
82 void WillCommit() override {}
83 void DidCommit() override {}
84 void DidCommitAndDrawFrame() override {}
85 void DidCompleteSwapBuffers() override {}
86 void DidCompletePageScaleAnimation() override {}
88 // cc::LayerTreeHostSingleThreadClient implementation.
89 void DidPostSwapBuffers() override {}
90 void DidAbortSwapBuffers() override {}
92 private:
93 scoped_ptr<cc::LayerTreeHost> layer_tree_host_;
95 DISALLOW_COPY_AND_ASSIGN(WebLayerTreeViewImplForTesting);
98 } // namespace content
100 #endif // CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_