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

Side by Side Diff: cc/trees/layer_tree_host.h

Issue 429743003: Rename Animate as Begin(Main)Frame (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix. Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « cc/test/layer_tree_test.cc ('k') | cc/trees/layer_tree_host.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 CC_TREES_LAYER_TREE_HOST_H_ 5 #ifndef CC_TREES_LAYER_TREE_HOST_H_
6 #define CC_TREES_LAYER_TREE_HOST_H_ 6 #define CC_TREES_LAYER_TREE_HOST_H_
7 7
8 #include <limits> 8 #include <limits>
9 #include <list> 9 #include <list>
10 #include <set> 10 #include <set>
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner); 97 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner);
98 virtual ~LayerTreeHost(); 98 virtual ~LayerTreeHost();
99 99
100 void SetLayerTreeHostClientReady(); 100 void SetLayerTreeHostClientReady();
101 101
102 // LayerTreeHost interface to Proxy. 102 // LayerTreeHost interface to Proxy.
103 void WillBeginMainFrame() { 103 void WillBeginMainFrame() {
104 client_->WillBeginMainFrame(source_frame_number_); 104 client_->WillBeginMainFrame(source_frame_number_);
105 } 105 }
106 void DidBeginMainFrame(); 106 void DidBeginMainFrame();
107 void UpdateClientAnimations(base::TimeTicks monotonic_frame_begin_time); 107 void BeginMainFrame(const BeginFrameArgs& args);
108 void AnimateLayers(base::TimeTicks monotonic_frame_begin_time); 108 void AnimateLayers(base::TimeTicks monotonic_frame_begin_time);
109 void DidStopFlinging(); 109 void DidStopFlinging();
110 void Layout(); 110 void Layout();
111 void BeginCommitOnImplThread(LayerTreeHostImpl* host_impl); 111 void BeginCommitOnImplThread(LayerTreeHostImpl* host_impl);
112 void FinishCommitOnImplThread(LayerTreeHostImpl* host_impl); 112 void FinishCommitOnImplThread(LayerTreeHostImpl* host_impl);
113 void WillCommit(); 113 void WillCommit();
114 void CommitComplete(); 114 void CommitComplete();
115 scoped_ptr<OutputSurface> CreateOutputSurface(); 115 scoped_ptr<OutputSurface> CreateOutputSurface();
116 virtual scoped_ptr<LayerTreeHostImpl> CreateLayerTreeHostImpl( 116 virtual scoped_ptr<LayerTreeHostImpl> CreateLayerTreeHostImpl(
117 LayerTreeHostImplClient* client); 117 LayerTreeHostImplClient* client);
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 int next_ui_resource_id_; 354 int next_ui_resource_id_;
355 355
356 typedef std::list<UIResourceRequest> UIResourceRequestQueue; 356 typedef std::list<UIResourceRequest> UIResourceRequestQueue;
357 UIResourceRequestQueue ui_resource_request_queue_; 357 UIResourceRequestQueue ui_resource_request_queue_;
358 358
359 void RecordGpuRasterizationHistogram(); 359 void RecordGpuRasterizationHistogram();
360 void CalculateLCDTextMetricsCallback(Layer* layer); 360 void CalculateLCDTextMetricsCallback(Layer* layer);
361 361
362 void NotifySwapPromiseMonitorsOfSetNeedsCommit(); 362 void NotifySwapPromiseMonitorsOfSetNeedsCommit();
363 363
364 bool animating_; 364 bool inside_begin_main_frame_;
365 bool needs_full_tree_sync_; 365 bool needs_full_tree_sync_;
366 366
367 base::CancelableClosure prepaint_callback_; 367 base::CancelableClosure prepaint_callback_;
368 368
369 LayerTreeHostClient* client_; 369 LayerTreeHostClient* client_;
370 scoped_ptr<Proxy> proxy_; 370 scoped_ptr<Proxy> proxy_;
371 371
372 int source_frame_number_; 372 int source_frame_number_;
373 scoped_ptr<RenderingStatsInstrumentation> rendering_stats_instrumentation_; 373 scoped_ptr<RenderingStatsInstrumentation> rendering_stats_instrumentation_;
374 374
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 454
455 ScopedPtrVector<SwapPromise> swap_promise_list_; 455 ScopedPtrVector<SwapPromise> swap_promise_list_;
456 std::set<SwapPromiseMonitor*> swap_promise_monitor_; 456 std::set<SwapPromiseMonitor*> swap_promise_monitor_;
457 457
458 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); 458 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost);
459 }; 459 };
460 460
461 } // namespace cc 461 } // namespace cc
462 462
463 #endif // CC_TREES_LAYER_TREE_HOST_H_ 463 #endif // CC_TREES_LAYER_TREE_HOST_H_
OLDNEW
« no previous file with comments | « cc/test/layer_tree_test.cc ('k') | cc/trees/layer_tree_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698