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

Side by Side Diff: cc/output/output_surface_client.h

Issue 2143263002: cc: Remove OutputSurfaceClient::DidSwapBuffers(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removedidswap: fix-webview-swap Created 4 years, 5 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
« no previous file with comments | « cc/output/output_surface.h ('k') | cc/output/output_surface_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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_OUTPUT_OUTPUT_SURFACE_CLIENT_H_ 5 #ifndef CC_OUTPUT_OUTPUT_SURFACE_CLIENT_H_
6 #define CC_OUTPUT_OUTPUT_SURFACE_CLIENT_H_ 6 #define CC_OUTPUT_OUTPUT_SURFACE_CLIENT_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
(...skipping 16 matching lines...) Expand all
27 public: 27 public:
28 // TODO(enne): Remove this in favor of using SetBeginFrameSource. 28 // TODO(enne): Remove this in favor of using SetBeginFrameSource.
29 virtual void CommitVSyncParameters(base::TimeTicks timebase, 29 virtual void CommitVSyncParameters(base::TimeTicks timebase,
30 base::TimeDelta interval) = 0; 30 base::TimeDelta interval) = 0;
31 // Pass the begin frame source for the client to observe. Client does not own 31 // Pass the begin frame source for the client to observe. Client does not own
32 // the BeginFrameSource. OutputSurface should call this once after binding to 32 // the BeginFrameSource. OutputSurface should call this once after binding to
33 // the client and then call again with a null while detaching. 33 // the client and then call again with a null while detaching.
34 virtual void SetBeginFrameSource(BeginFrameSource* source) = 0; 34 virtual void SetBeginFrameSource(BeginFrameSource* source) = 0;
35 35
36 virtual void SetNeedsRedrawRect(const gfx::Rect& damage_rect) = 0; 36 virtual void SetNeedsRedrawRect(const gfx::Rect& damage_rect) = 0;
37 virtual void DidSwapBuffers() = 0;
38 virtual void DidSwapBuffersComplete() = 0; 37 virtual void DidSwapBuffersComplete() = 0;
39 virtual void DidReceiveTextureInUseResponses( 38 virtual void DidReceiveTextureInUseResponses(
40 const gpu::TextureInUseResponses& responses) = 0; 39 const gpu::TextureInUseResponses& responses) = 0;
41 virtual void ReclaimResources(const CompositorFrameAck* ack) = 0; 40 virtual void ReclaimResources(const CompositorFrameAck* ack) = 0;
42 virtual void DidLoseOutputSurface() = 0; 41 virtual void DidLoseOutputSurface() = 0;
43 virtual void SetExternalTilePriorityConstraints( 42 virtual void SetExternalTilePriorityConstraints(
44 const gfx::Rect& viewport_rect, 43 const gfx::Rect& viewport_rect,
45 const gfx::Transform& transform) = 0; 44 const gfx::Transform& transform) = 0;
46 virtual void SetMemoryPolicy(const ManagedMemoryPolicy& policy) = 0; 45 virtual void SetMemoryPolicy(const ManagedMemoryPolicy& policy) = 0;
47 // If set, |callback| will be called subsequent to each new tree activation, 46 // If set, |callback| will be called subsequent to each new tree activation,
48 // regardless of the compositor visibility or damage. |callback| must remain 47 // regardless of the compositor visibility or damage. |callback| must remain
49 // valid for the lifetime of the OutputSurfaceClient or until unregisted -- 48 // valid for the lifetime of the OutputSurfaceClient or until unregisted --
50 // use SetTreeActivationCallback(base::Closure()) to unregister it. 49 // use SetTreeActivationCallback(base::Closure()) to unregister it.
51 virtual void SetTreeActivationCallback(const base::Closure& callback) = 0; 50 virtual void SetTreeActivationCallback(const base::Closure& callback) = 0;
52 // This allows the output surface to ask its client for a draw. 51 // This allows the output surface to ask its client for a draw.
53 virtual void OnDraw(const gfx::Transform& transform, 52 virtual void OnDraw(const gfx::Transform& transform,
54 const gfx::Rect& viewport, 53 const gfx::Rect& viewport,
55 const gfx::Rect& clip, 54 const gfx::Rect& clip,
56 bool resourceless_software_draw) = 0; 55 bool resourceless_software_draw) = 0;
57 56
58 protected: 57 protected:
59 virtual ~OutputSurfaceClient() {} 58 virtual ~OutputSurfaceClient() {}
60 }; 59 };
61 60
62 } // namespace cc 61 } // namespace cc
63 62
64 #endif // CC_OUTPUT_OUTPUT_SURFACE_CLIENT_H_ 63 #endif // CC_OUTPUT_OUTPUT_SURFACE_CLIENT_H_
OLDNEW
« no previous file with comments | « cc/output/output_surface.h ('k') | cc/output/output_surface_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698