OLD | NEW |
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 Loading... |
21 #include "content/common/message_router.h" | 21 #include "content/common/message_router.h" |
22 #include "content/public/common/gpu_memory_stats.h" | 22 #include "content/public/common/gpu_memory_stats.h" |
23 #include "gpu/config/gpu_info.h" | 23 #include "gpu/config/gpu_info.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 { | 31 namespace ui { |
32 struct LatencyInfo; | 32 struct LatencyInfo; |
33 } | 33 } |
34 | 34 |
35 namespace gfx { | 35 namespace gfx { |
36 class Size; | 36 class Size; |
37 } | 37 } |
38 | 38 |
39 namespace IPC { | 39 namespace IPC { |
40 class Message; | 40 class Message; |
41 } | 41 } |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 void OnAcceleratedSurfacePostSubBuffer( | 100 void OnAcceleratedSurfacePostSubBuffer( |
101 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params); | 101 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params); |
102 void OnAcceleratedSurfaceSuspend(int32 surface_id); | 102 void OnAcceleratedSurfaceSuspend(int32 surface_id); |
103 void OnAcceleratedSurfaceRelease( | 103 void OnAcceleratedSurfaceRelease( |
104 const GpuHostMsg_AcceleratedSurfaceRelease_Params& params); | 104 const GpuHostMsg_AcceleratedSurfaceRelease_Params& params); |
105 void OnVideoMemoryUsageStatsReceived( | 105 void OnVideoMemoryUsageStatsReceived( |
106 const GPUVideoMemoryUsageStats& video_memory_usage_stats); | 106 const GPUVideoMemoryUsageStats& video_memory_usage_stats); |
107 void OnUpdateVSyncParameters(int surface_id, | 107 void OnUpdateVSyncParameters(int surface_id, |
108 base::TimeTicks timebase, | 108 base::TimeTicks timebase, |
109 base::TimeDelta interval); | 109 base::TimeDelta interval); |
110 void OnFrameDrawn(const cc::LatencyInfo& latency_info); | 110 void OnFrameDrawn(const ui::LatencyInfo& latency_info); |
111 | 111 |
112 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair. | 112 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair. |
113 int host_id_; | 113 int host_id_; |
114 }; | 114 }; |
115 | 115 |
116 } // namespace content | 116 } // namespace content |
117 | 117 |
118 #endif // CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ | 118 #endif // CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_UI_SHIM_H_ |
OLD | NEW |