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

Unified Diff: content/browser/android/in_process/synchronous_compositor_impl.h

Issue 619843002: cc: Make separate interface for BeginFrame ipc from OutputSurface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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: content/browser/android/in_process/synchronous_compositor_impl.h
diff --git a/content/browser/android/in_process/synchronous_compositor_impl.h b/content/browser/android/in_process/synchronous_compositor_impl.h
index 9b92cef37810b3eeaf839fc62fad5e954d3d2990..5c24c9a30d0d166e03e6bd1e84427164fda2aa6a 100644
--- a/content/browser/android/in_process/synchronous_compositor_impl.h
+++ b/content/browser/android/in_process/synchronous_compositor_impl.h
@@ -18,6 +18,7 @@
#include "ipc/ipc_message.h"
namespace cc {
+class BeginFrameSource;
class InputHandler;
}
@@ -27,6 +28,7 @@ class WebInputEvent;
namespace content {
class InputHandlerManager;
+class SynchronousCompositorExternalBeginFrameSource;
struct DidOverscrollParams;
// The purpose of this class is to act as the intermediary between the various
@@ -48,6 +50,12 @@ class SynchronousCompositorImpl
InputEventAckState HandleInputEvent(const blink::WebInputEvent& input_event);
+ void DidInitializeExternalBeginFrameSource(
+ SynchronousCompositorExternalBeginFrameSource* begin_frame_source);
+ void DidDestroyExternalBeginFrameSource(
+ SynchronousCompositorExternalBeginFrameSource* begin_frame_source);
+ void NeedsBeginFramesChanged() const;
+
// SynchronousCompositor
virtual void SetClient(SynchronousCompositorClient* compositor_client)
override;
@@ -71,7 +79,6 @@ class SynchronousCompositorImpl
SynchronousCompositorOutputSurface* output_surface) override;
virtual void DidDestroySynchronousOutputSurface(
SynchronousCompositorOutputSurface* output_surface) override;
- virtual void SetContinuousInvalidate(bool enable) override;
virtual void DidActivatePendingTree() override;
// LayerScrollOffsetDelegate
@@ -95,13 +102,16 @@ class SynchronousCompositorImpl
friend class WebContentsUserData<SynchronousCompositorImpl>;
void UpdateFrameMetaData(const cc::CompositorFrameMetadata& frame_info);
+ void NotifyDidDestroyCompositorToClient();
void DeliverMessages();
bool CalledOnValidThread() const;
SynchronousCompositorClient* compositor_client_;
SynchronousCompositorOutputSurface* output_surface_;
+ SynchronousCompositorExternalBeginFrameSource* begin_frame_source_;
WebContents* contents_;
cc::InputHandler* input_handler_;
+ bool invoking_composite_;
base::WeakPtrFactory<SynchronousCompositorImpl> weak_ptr_factory_;

Powered by Google App Engine
This is Rietveld 408576698