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

Unified Diff: cc/output_surface_client.h

Issue 12614013: Plumb cc::LatencyInfo through command buffer and output surface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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: cc/output_surface_client.h
diff --git a/cc/output_surface_client.h b/cc/output_surface_client.h
index 2c073b4f750d5815610cb8aeb857f8a898866e30..c046d0c6c37e71c37c59b35d8bd43331c441bcf9 100644
--- a/cc/output_surface_client.h
+++ b/cc/output_surface_client.h
@@ -11,6 +11,7 @@
namespace cc {
class CompositorFrameAck;
+struct LatencyInfo;
class CC_EXPORT OutputSurfaceClient {
public:
@@ -18,6 +19,8 @@ class CC_EXPORT OutputSurfaceClient {
base::TimeDelta interval) = 0;
virtual void OnSendFrameToParentCompositorAck(const CompositorFrameAck&) = 0;
+ virtual void OnReceivedLatencyInfo(const LatencyInfo&) = 0;
nduca 2013/03/18 18:38:31 I think we should consider merging SwapBuffers/Sen
piman 2013/03/19 04:30:29 At a high level, what is the purpose of making Lat
+
protected:
virtual ~OutputSurfaceClient() {}
};

Powered by Google App Engine
This is Rietveld 408576698