Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: third_party/WebKit/Source/platform/testing/WebLayerTreeViewImplForTesting.h

Issue 2237433004: Adds DevTools commands for forced viewport override. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 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 WebLayerTreeViewImplForTesting_h 5 #ifndef WebLayerTreeViewImplForTesting_h
6 #define WebLayerTreeViewImplForTesting_h 6 #define WebLayerTreeViewImplForTesting_h
7 7
8 #include "cc/test/test_task_graph_runner.h" 8 #include "cc/test/test_task_graph_runner.h"
9 #include "cc/trees/layer_tree_host_client.h" 9 #include "cc/trees/layer_tree_host_client.h"
10 #include "cc/trees/layer_tree_host_single_thread_client.h" 10 #include "cc/trees/layer_tree_host_single_thread_client.h"
(...skipping 27 matching lines...) Expand all
38 bool hasLayer(const WebLayer&); 38 bool hasLayer(const WebLayer&);
39 39
40 // blink::WebLayerTreeView implementation. 40 // blink::WebLayerTreeView implementation.
41 void setRootLayer(const blink::WebLayer&) override; 41 void setRootLayer(const blink::WebLayer&) override;
42 void clearRootLayer() override; 42 void clearRootLayer() override;
43 void attachCompositorAnimationTimeline(cc::AnimationTimeline*) override; 43 void attachCompositorAnimationTimeline(cc::AnimationTimeline*) override;
44 void detachCompositorAnimationTimeline(cc::AnimationTimeline*) override; 44 void detachCompositorAnimationTimeline(cc::AnimationTimeline*) override;
45 virtual void setViewportSize(const blink::WebSize& unusedDeprecated, 45 virtual void setViewportSize(const blink::WebSize& unusedDeprecated,
46 const blink::WebSize& deviceViewportSize); 46 const blink::WebSize& deviceViewportSize);
47 void setViewportSize(const blink::WebSize&) override; 47 void setViewportSize(const blink::WebSize&) override;
48 WebSize getViewportSize() const override;
48 void setDeviceScaleFactor(float) override; 49 void setDeviceScaleFactor(float) override;
49 void setBackgroundColor(blink::WebColor) override; 50 void setBackgroundColor(blink::WebColor) override;
50 void setHasTransparentBackground(bool) override; 51 void setHasTransparentBackground(bool) override;
51 void setVisible(bool) override; 52 void setVisible(bool) override;
52 void setPageScaleFactorAndLimits(float pageScaleFactor, 53 void setPageScaleFactorAndLimits(float pageScaleFactor,
53 float minimum, 54 float minimum,
54 float maximum) override; 55 float maximum) override;
55 void startPageScaleAnimation(const blink::WebPoint& destination, 56 void startPageScaleAnimation(const blink::WebPoint& destination,
56 bool useAnchor, 57 bool useAnchor,
57 float newPageScale, 58 float newPageScale,
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 void DidAbortSwapBuffers() override {} 101 void DidAbortSwapBuffers() override {}
101 102
102 private: 103 private:
103 cc::TestTaskGraphRunner m_taskGraphRunner; 104 cc::TestTaskGraphRunner m_taskGraphRunner;
104 std::unique_ptr<cc::LayerTreeHost> m_layerTreeHost; 105 std::unique_ptr<cc::LayerTreeHost> m_layerTreeHost;
105 }; 106 };
106 107
107 } // namespace blink 108 } // namespace blink
108 109
109 #endif // WebLayerTreeViewImplForTesting_h 110 #endif // WebLayerTreeViewImplForTesting_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698