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

Side by Side Diff: ui/compositor/compositor.h

Issue 904633004: [cc]: Add a BeginMainFrameNotExpectedSoon signal and route it to the RendererScheduler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix mojo and webview. Created 5 years, 10 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
« no previous file with comments | « mojo/services/html_viewer/weblayertreeview_impl.cc ('k') | ui/compositor/compositor.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 UI_COMPOSITOR_COMPOSITOR_H_ 5 #ifndef UI_COMPOSITOR_COMPOSITOR_H_
6 #define UI_COMPOSITOR_COMPOSITOR_H_ 6 #define UI_COMPOSITOR_COMPOSITOR_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/containers/hash_tables.h" 10 #include "base/containers/hash_tables.h"
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 // Signals swap has completed. 236 // Signals swap has completed.
237 void OnSwapBuffersComplete(); 237 void OnSwapBuffersComplete();
238 238
239 // Signals swap has aborted (e.g. lost context). 239 // Signals swap has aborted (e.g. lost context).
240 void OnSwapBuffersAborted(); 240 void OnSwapBuffersAborted();
241 241
242 // LayerTreeHostClient implementation. 242 // LayerTreeHostClient implementation.
243 void WillBeginMainFrame() override {} 243 void WillBeginMainFrame() override {}
244 void DidBeginMainFrame() override {} 244 void DidBeginMainFrame() override {}
245 void BeginMainFrame(const cc::BeginFrameArgs& args) override; 245 void BeginMainFrame(const cc::BeginFrameArgs& args) override;
246 void BeginMainFrameNotExpectedSoon() override;
246 void Layout() override; 247 void Layout() override;
247 void ApplyViewportDeltas(const gfx::Vector2dF& inner_delta, 248 void ApplyViewportDeltas(const gfx::Vector2dF& inner_delta,
248 const gfx::Vector2dF& outer_delta, 249 const gfx::Vector2dF& outer_delta,
249 const gfx::Vector2dF& elastic_overscroll_delta, 250 const gfx::Vector2dF& elastic_overscroll_delta,
250 float page_scale, 251 float page_scale,
251 float top_controls_delta) override {} 252 float top_controls_delta) override {}
252 void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta, 253 void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta,
253 float page_scale, 254 float page_scale,
254 float top_controls_delta) override {} 255 float top_controls_delta) override {}
255 void RequestNewOutputSurface() override; 256 void RequestNewOutputSurface() override;
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 LayerAnimatorCollection layer_animator_collection_; 331 LayerAnimatorCollection layer_animator_collection_;
331 332
332 base::WeakPtrFactory<Compositor> weak_ptr_factory_; 333 base::WeakPtrFactory<Compositor> weak_ptr_factory_;
333 334
334 DISALLOW_COPY_AND_ASSIGN(Compositor); 335 DISALLOW_COPY_AND_ASSIGN(Compositor);
335 }; 336 };
336 337
337 } // namespace ui 338 } // namespace ui
338 339
339 #endif // UI_COMPOSITOR_COMPOSITOR_H_ 340 #endif // UI_COMPOSITOR_COMPOSITOR_H_
OLDNEW
« no previous file with comments | « mojo/services/html_viewer/weblayertreeview_impl.cc ('k') | ui/compositor/compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698