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

Side by Side Diff: cc/trees/proxy.h

Issue 2337913003: Fork cc::OutputSurface into cc::CompositorFrameSink. (Closed)
Patch Set: cfsfork: rebase Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_TREES_PROXY_H_ 5 #ifndef CC_TREES_PROXY_H_
6 #define CC_TREES_PROXY_H_ 6 #define CC_TREES_PROXY_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/threading/platform_thread.h" 13 #include "base/threading/platform_thread.h"
14 #include "base/time/time.h" 14 #include "base/time/time.h"
15 #include "base/values.h" 15 #include "base/values.h"
16 #include "cc/base/cc_export.h" 16 #include "cc/base/cc_export.h"
17 #include "cc/input/top_controls_state.h" 17 #include "cc/input/top_controls_state.h"
18 #include "cc/scheduler/begin_frame_source.h" 18 #include "cc/scheduler/begin_frame_source.h"
19 #include "cc/trees/task_runner_provider.h" 19 #include "cc/trees/task_runner_provider.h"
20 20
21 namespace gfx { 21 namespace gfx {
22 class Rect; 22 class Rect;
23 class Vector2d; 23 class Vector2d;
24 } 24 }
25 25
26 namespace cc { 26 namespace cc {
27 class BeginFrameSource; 27 class BeginFrameSource;
28 class LayerTreeDebugState; 28 class LayerTreeDebugState;
29 class LayerTreeMutator; 29 class LayerTreeMutator;
30 class OutputSurface; 30 class CompositorFrameSink;
31 31
32 // Abstract interface responsible for proxying commands from the main-thread 32 // Abstract interface responsible for proxying commands from the main-thread
33 // side of the compositor over to the compositor implementation. 33 // side of the compositor over to the compositor implementation.
34 class CC_EXPORT Proxy { 34 class CC_EXPORT Proxy {
35 public: 35 public:
36 virtual ~Proxy() {} 36 virtual ~Proxy() {}
37 37
38 virtual bool IsStarted() const = 0; 38 virtual bool IsStarted() const = 0;
39 virtual bool CommitToActiveTree() const = 0; 39 virtual bool CommitToActiveTree() const = 0;
40 40
41 // Will call LayerTreeHost::OnCreateAndInitializeOutputSurfaceAttempted 41 // Will call LayerTreeHost::OnCreateAndInitializeCompositorFrameSinkAttempted
42 // with the result of this function. 42 // with the result of this function.
43 virtual void SetOutputSurface(OutputSurface* output_surface) = 0; 43 virtual void SetCompositorFrameSink(
44 CompositorFrameSink* compositor_frame_sink) = 0;
44 45
45 virtual void ReleaseOutputSurface() = 0; 46 virtual void ReleaseCompositorFrameSink() = 0;
46 47
47 virtual void SetVisible(bool visible) = 0; 48 virtual void SetVisible(bool visible) = 0;
48 49
49 virtual void SetNeedsAnimate() = 0; 50 virtual void SetNeedsAnimate() = 0;
50 virtual void SetNeedsUpdateLayers() = 0; 51 virtual void SetNeedsUpdateLayers() = 0;
51 virtual void SetNeedsCommit() = 0; 52 virtual void SetNeedsCommit() = 0;
52 virtual void SetNeedsRedraw(const gfx::Rect& damage_rect) = 0; 53 virtual void SetNeedsRedraw(const gfx::Rect& damage_rect) = 0;
53 virtual void SetNextCommitWaitsForActivation() = 0; 54 virtual void SetNextCommitWaitsForActivation() = 0;
54 55
55 virtual void NotifyInputThrottledUntilCommit() = 0; 56 virtual void NotifyInputThrottledUntilCommit() = 0;
(...skipping 20 matching lines...) Expand all
76 TopControlsState current, 77 TopControlsState current,
77 bool animate) = 0; 78 bool animate) = 0;
78 79
79 // Testing hooks 80 // Testing hooks
80 virtual bool MainFrameWillHappenForTesting() = 0; 81 virtual bool MainFrameWillHappenForTesting() = 0;
81 }; 82 };
82 83
83 } // namespace cc 84 } // namespace cc
84 85
85 #endif // CC_TREES_PROXY_H_ 86 #endif // CC_TREES_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698