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

Unified Diff: cc/trees/channel_main.h

Issue 1418953002: cc: Send shared variables between main and impl side using the channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/test/layer_tree_test.cc ('k') | cc/trees/layer_tree_host_unittest_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/channel_main.h
diff --git a/cc/trees/channel_main.h b/cc/trees/channel_main.h
index a9f51739c9571befc9b95bfbf4dd51edddd6f362..665c3e87a667137c1592ff32335d2c0ee9ef756a 100644
--- a/cc/trees/channel_main.h
+++ b/cc/trees/channel_main.h
@@ -44,7 +44,12 @@ class CC_EXPORT ChannelMain {
virtual void SetNeedsRedrawOnImpl(const gfx::Rect& damage_rect) = 0;
virtual void SetNeedsCommitOnImpl() = 0;
virtual void BeginMainFrameAbortedOnImpl(CommitEarlyOutReason reason) = 0;
- virtual void StartCommitOnImpl(CompletionEvent* completion) = 0;
+ virtual void StartCommitOnImpl(CompletionEvent* completion,
Khushal 2015/10/23 22:42:29 The aim here is to make it explicit to the user of
+ LayerTreeHost* layer_tree_host,
+ bool hold_commit_for_activation) = 0;
+ virtual void InitializeImplOnImpl(CompletionEvent* completion,
+ LayerTreeHost* layer_tree_host) = 0;
+ virtual void LayerTreeHostClosedOnImpl(CompletionEvent* completion) = 0;
virtual ~ChannelMain() {}
};
« no previous file with comments | « cc/test/layer_tree_test.cc ('k') | cc/trees/layer_tree_host_unittest_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698