summaryrefslogtreecommitdiffstats
path: root/content/browser/renderer_host/begin_frame_observer_proxy.h
blob: fd2aa6d7a06f9507033048bfc843906e60c3b719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// 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_BEGIN_FRAME_OBSERVER_PROXY_H_
#define CONTENT_BROWSER_RENDERER_HOST_BEGIN_FRAME_OBSERVER_PROXY_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 BeginFrameObserverProxy which manages sending
// BeginFrame messages.
class BeginFrameObserverProxyClient {
 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 BeginFrameObserverProxy
    : public ui::CompositorBeginFrameObserver {
 public:
  explicit BeginFrameObserverProxy(BeginFrameObserverProxyClient* client);
  ~BeginFrameObserverProxy() override;

  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_;

  BeginFrameObserverProxyClient* client_;
  ui::Compositor* compositor_;

  DISALLOW_COPY_AND_ASSIGN(BeginFrameObserverProxy);
};

}  // namespace content

#endif  // CONTENT_BROWSER_RENDERER_HOST_BEGIN_FRAME_OBSERVER_PROXY_H_