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

Side by Side Diff: content/browser/gpu/gpu_process_host_ui_shim.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, 8 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 | Annotate | Revision Log
« no previous file with comments | « cc/output/output_surface.cc ('k') | content/browser/gpu/gpu_process_host_ui_shim.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ 5 #ifndef CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_
6 #define CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ 6 #define CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_
7 7
8 // This class lives on the UI thread and supports classes like the 8 // This class lives on the UI thread and supports classes like the
9 // BackingStoreProxy, which must live on the UI thread. The IO thread 9 // BackingStoreProxy, which must live on the UI thread. The IO thread
10 // portion of this class, the GpuProcessHost, is responsible for 10 // portion of this class, the GpuProcessHost, is responsible for
(...skipping 10 matching lines...) Expand all
21 #include "content/common/message_router.h" 21 #include "content/common/message_router.h"
22 #include "content/public/common/gpu_info.h" 22 #include "content/public/common/gpu_info.h"
23 #include "content/public/common/gpu_memory_stats.h" 23 #include "content/public/common/gpu_memory_stats.h"
24 #include "ipc/ipc_listener.h" 24 #include "ipc/ipc_listener.h"
25 #include "ipc/ipc_sender.h" 25 #include "ipc/ipc_sender.h"
26 26
27 struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params; 27 struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params;
28 struct GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params; 28 struct GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params;
29 struct GpuHostMsg_AcceleratedSurfaceRelease_Params; 29 struct GpuHostMsg_AcceleratedSurfaceRelease_Params;
30 30
31 namespace cc {
32 struct LatencyInfo;
33 }
34
31 namespace gfx { 35 namespace gfx {
32 class Size; 36 class Size;
33 } 37 }
34 38
35 namespace IPC { 39 namespace IPC {
36 class Message; 40 class Message;
37 } 41 }
38 42
39 namespace content { 43 namespace content {
40 void RouteToGpuProcessHostUIShimTask(int host_id, const IPC::Message& msg); 44 void RouteToGpuProcessHostUIShimTask(int host_id, const IPC::Message& msg);
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 void OnAcceleratedSurfacePostSubBuffer( 100 void OnAcceleratedSurfacePostSubBuffer(
97 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params); 101 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params);
98 void OnAcceleratedSurfaceSuspend(int32 surface_id); 102 void OnAcceleratedSurfaceSuspend(int32 surface_id);
99 void OnAcceleratedSurfaceRelease( 103 void OnAcceleratedSurfaceRelease(
100 const GpuHostMsg_AcceleratedSurfaceRelease_Params& params); 104 const GpuHostMsg_AcceleratedSurfaceRelease_Params& params);
101 void OnVideoMemoryUsageStatsReceived( 105 void OnVideoMemoryUsageStatsReceived(
102 const GPUVideoMemoryUsageStats& video_memory_usage_stats); 106 const GPUVideoMemoryUsageStats& video_memory_usage_stats);
103 void OnUpdateVSyncParameters(int surface_id, 107 void OnUpdateVSyncParameters(int surface_id,
104 base::TimeTicks timebase, 108 base::TimeTicks timebase,
105 base::TimeDelta interval); 109 base::TimeDelta interval);
110 void OnFrameDrawn(const cc::LatencyInfo& latency_info);
106 111
107 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair. 112 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair.
108 int host_id_; 113 int host_id_;
109 }; 114 };
110 115
111 } // namespace content 116 } // namespace content
112 117
113 #endif // CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ 118 #endif // CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_
OLDNEW
« no previous file with comments | « cc/output/output_surface.cc ('k') | content/browser/gpu/gpu_process_host_ui_shim.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698