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

Unified Diff: cc/trees/proxy_impl.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: Addressing comments. 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
Index: cc/trees/proxy_impl.h
diff --git a/cc/trees/proxy_impl.h b/cc/trees/proxy_impl.h
index 8acbb97377e108ce58d5849b55c47ca131d35709..c1598cc595cdfa09c66dd91464b072a5e78085f1 100644
--- a/cc/trees/proxy_impl.h
+++ b/cc/trees/proxy_impl.h
@@ -43,7 +43,12 @@ class CC_EXPORT ProxyImpl {
virtual void MainFrameWillHappenOnImplForTesting(
CompletionEvent* completion,
bool* main_frame_will_happen) = 0;
- virtual void StartCommitOnImpl(CompletionEvent* completion) = 0;
+ virtual void StartCommitOnImpl(CompletionEvent* completion,
+ 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;
// TODO(khushalsagar): Rename as GetWeakPtr() once ThreadProxy is split.
virtual base::WeakPtr<ProxyImpl> GetImplWeakPtr() = 0;

Powered by Google App Engine
This is Rietveld 408576698