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

Side by Side Diff: content/renderer/gpu/render_widget_compositor.h

Issue 947033002: CC Animations: Establish AnimationHost, AnimationTimeline and AnimationPlayer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Add comments. Created 5 years, 7 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ 5 #ifndef CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_
6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ 6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 int ScheduleMicroBenchmark( 74 int ScheduleMicroBenchmark(
75 const std::string& name, 75 const std::string& name,
76 scoped_ptr<base::Value> value, 76 scoped_ptr<base::Value> value,
77 const base::Callback<void(scoped_ptr<base::Value>)>& callback); 77 const base::Callback<void(scoped_ptr<base::Value>)>& callback);
78 bool SendMessageToMicroBenchmark(int id, scoped_ptr<base::Value> value); 78 bool SendMessageToMicroBenchmark(int id, scoped_ptr<base::Value> value);
79 void StartCompositor(); 79 void StartCompositor();
80 80
81 // WebLayerTreeView implementation. 81 // WebLayerTreeView implementation.
82 virtual void setRootLayer(const blink::WebLayer& layer); 82 virtual void setRootLayer(const blink::WebLayer& layer);
83 virtual void clearRootLayer(); 83 virtual void clearRootLayer();
84 virtual void attachCompositorAnimationTimeline(
85 blink::WebCompositorAnimationTimeline* compositor_timeline);
86 virtual void detachCompositorAnimationTimeline(
87 blink::WebCompositorAnimationTimeline* compositor_timeline);
84 virtual void setViewportSize( 88 virtual void setViewportSize(
85 const blink::WebSize& unused_deprecated, 89 const blink::WebSize& unused_deprecated,
86 const blink::WebSize& device_viewport_size); 90 const blink::WebSize& device_viewport_size);
87 virtual void setViewportSize(const blink::WebSize& device_viewport_size); 91 virtual void setViewportSize(const blink::WebSize& device_viewport_size);
88 virtual blink::WebSize layoutViewportSize() const; 92 virtual blink::WebSize layoutViewportSize() const;
89 virtual blink::WebSize deviceViewportSize() const; 93 virtual blink::WebSize deviceViewportSize() const;
90 virtual blink::WebFloatPoint adjustEventPointForPinchZoom( 94 virtual blink::WebFloatPoint adjustEventPointForPinchZoom(
91 const blink::WebFloatPoint& point) const; 95 const blink::WebFloatPoint& point) const;
92 virtual void setDeviceScaleFactor(float device_scale); 96 virtual void setDeviceScaleFactor(float device_scale);
93 virtual float deviceScaleFactor() const; 97 virtual float deviceScaleFactor() const;
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; 183 scoped_ptr<cc::LayerTreeHost> layer_tree_host_;
180 184
181 scoped_ptr<cc::CopyOutputRequest> temporary_copy_output_request_; 185 scoped_ptr<cc::CopyOutputRequest> temporary_copy_output_request_;
182 186
183 base::WeakPtrFactory<RenderWidgetCompositor> weak_factory_; 187 base::WeakPtrFactory<RenderWidgetCompositor> weak_factory_;
184 }; 188 };
185 189
186 } // namespace content 190 } // namespace content
187 191
188 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ 192 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698