base: Change DCHECK_IS_ON to a macro DCHECK_IS_ON().
[chromium-blink-merge.git] / content / test / web_layer_tree_view_impl_for_testing.h
blob2d316c9a44a51772a605a6788b9d2e266b830f7d
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(
63 const blink::WebSelectionBound& start,
64 const blink::WebSelectionBound& end) override;
65 virtual void clearSelection() override;
67 // cc::LayerTreeHostClient implementation.
68 void WillBeginMainFrame(int frame_id) override {}
69 void DidBeginMainFrame() override {}
70 void BeginMainFrame(const cc::BeginFrameArgs& args) override {}
71 void Layout() override;
72 void ApplyViewportDeltas(const gfx::Vector2d& inner_delta,
73 const gfx::Vector2d& outer_delta,
74 const gfx::Vector2dF& elastic_overscroll_delta,
75 float page_scale,
76 float top_controls_delta) override;
77 void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta,
78 float page_scale,
79 float top_controls_delta) override;
80 void RequestNewOutputSurface() override;
81 void DidInitializeOutputSurface() override {}
82 void DidFailToInitializeOutputSurface() override;
83 void WillCommit() override {}
84 void DidCommit() override {}
85 void DidCommitAndDrawFrame() override {}
86 void DidCompleteSwapBuffers() 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_