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

Unified Diff: content/browser/renderer_host/compositor_begin_frame_observer_impl.h

Issue 1000503002: Add BeginFrameObserverProxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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: content/browser/renderer_host/compositor_begin_frame_observer_impl.h
diff --git a/content/browser/renderer_host/compositor_begin_frame_observer_impl.h b/content/browser/renderer_host/compositor_begin_frame_observer_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..5979fbb879281f0106df5d207ac389c3424890dc
--- /dev/null
+++ b/content/browser/renderer_host/compositor_begin_frame_observer_impl.h
@@ -0,0 +1,61 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_BEGIN_FRAME_OBSERVER_IMPL_H_
+#define CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_BEGIN_FRAME_OBSERVER_IMPL_H_
+
+#include "content/common/content_export.h"
+#include "ui/compositor/compositor.h"
+#include "ui/compositor/compositor_observer.h"
+
+namespace cc {
+struct BeginFrameArgs;
+}
+
+namespace content {
+
+// This is the interface from the CompositorBeginFrameObserverImpl which manages
+// sending BeginFrame messages.
+class CompositorBeginFrameObserverImplClient {
+ public:
+ virtual void SendBeginFrame(const cc::BeginFrameArgs& args) = 0;
+};
+
+// This class is used to manage all of the RenderWidgetHostView state and
+// functionality that is associated with BeginFrame message handling.
+class CONTENT_EXPORT CompositorBeginFrameObserverImpl
+ : public ui::CompositorBeginFrameObserver {
+ public:
+ explicit CompositorBeginFrameObserverImpl(
+ CompositorBeginFrameObserverImplClient* client);
+ virtual ~CompositorBeginFrameObserverImpl();
no sievers 2015/03/20 22:45:21 nit: override instead of virtual
+
+ void SetNeedsBeginFrames(bool needs_begin_frames);
+
+ void SetCompositor(ui::Compositor* compositor);
+ void ResetCompositor();
+
+ // Overridden from ui::CompositorBeginFrameObserver:
+ void OnSendBeginFrame(const cc::BeginFrameArgs& args) override;
+
+ private:
+ void StartObservingBeginFrames();
+ void StopObservingBeginFrames();
+
+ // True when RenderWidget needs a BeginFrame message.
+ bool needs_begin_frames_;
+
+ // Used whether to send begin frame to client or not. When |args| from
+ // Compositor is different from this, send to client.
+ cc::BeginFrameArgs last_sent_begin_frame_args_;
+
+ CompositorBeginFrameObserverImplClient* client_;
+ ui::Compositor* compositor_;
+
+ DISALLOW_COPY_AND_ASSIGN(CompositorBeginFrameObserverImpl);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_BEGIN_FRAME_OBSERVER_IMPL_H_
« no previous file with comments | « no previous file | content/browser/renderer_host/compositor_begin_frame_observer_impl.cc » ('j') | content/content_browser.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698