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

Unified Diff: android_webview/browser/compositor_frame_producer.h

Issue 1943963003: WIP Handle AwContents needing multiple live functors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from PS17 Created 4 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 side-by-side diff with in-line comments
Download patch
Index: android_webview/browser/compositor_frame_producer.h
diff --git a/android_webview/browser/compositor_frame_producer.h b/android_webview/browser/compositor_frame_producer.h
index b27b611a618ccb35730d643227549efa379ceed5..8defed52bb7b18c0cd6c327fcdaaa8dad376a757 100644
--- a/android_webview/browser/compositor_frame_producer.h
+++ b/android_webview/browser/compositor_frame_producer.h
@@ -11,8 +11,10 @@ class CompositorFrameConsumer;
class CompositorFrameProducer {
public:
- virtual void OnParentDrawConstraintsUpdated() = 0;
- virtual void OnCompositorFrameConsumerWillDestroy() = 0;
+ virtual void OnParentDrawConstraintsUpdated(
+ CompositorFrameConsumer* compositor_frame_consumer) = 0;
+ virtual void RemoveCompositorFrameConsumer(
+ CompositorFrameConsumer* compositor_frame_consumer) = 0;
protected:
virtual ~CompositorFrameProducer() {}
« no previous file with comments | « android_webview/browser/compositor_frame_consumer.h ('k') | android_webview/browser/render_thread_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698