OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include <stddef.h> | 5 #include <stddef.h> |
6 | 6 |
7 #include "base/memory/shared_memory_handle.h" | 7 #include "base/memory/shared_memory_handle.h" |
8 #include "cc/output/begin_frame_args.h" | 8 #include "cc/output/begin_frame_args.h" |
9 #include "cc/output/compositor_frame.h" | 9 #include "cc/output/compositor_frame.h" |
10 #include "cc/output/compositor_frame_ack.h" | 10 #include "cc/output/compositor_frame_ack.h" |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
173 IPC_SYNC_MESSAGE_ROUTED2_3(SyncCompositorMsg_DemandDrawSw, | 173 IPC_SYNC_MESSAGE_ROUTED2_3(SyncCompositorMsg_DemandDrawSw, |
174 content::SyncCompositorCommonBrowserParams, | 174 content::SyncCompositorCommonBrowserParams, |
175 content::SyncCompositorDemandDrawSwParams, | 175 content::SyncCompositorDemandDrawSwParams, |
176 bool /* result */, | 176 bool /* result */, |
177 content::SyncCompositorCommonRendererParams, | 177 content::SyncCompositorCommonRendererParams, |
178 cc::CompositorFrame) | 178 cc::CompositorFrame) |
179 | 179 |
180 IPC_MESSAGE_ROUTED1(SyncCompositorMsg_UpdateState, | 180 IPC_MESSAGE_ROUTED1(SyncCompositorMsg_UpdateState, |
181 content::SyncCompositorCommonBrowserParams) | 181 content::SyncCompositorCommonBrowserParams) |
182 | 182 |
183 IPC_SYNC_MESSAGE_ROUTED1_1(SyncCompositorMsg_SynchronousUpdateState, | |
dcheng
2016/03/31 19:51:56
I think we need a link to a design doc or overview
dcheng
2016/03/31 19:52:22
Also, maybe some comments describing why we need b
boliu
2016/03/31 20:16:34
Good call on both counts.
Added link to bug and d
| |
184 content::SyncCompositorCommonBrowserParams, | |
185 content::SyncCompositorCommonRendererParams) | |
186 | |
183 // ----------------------------------------------------------------------------- | 187 // ----------------------------------------------------------------------------- |
184 // Messages sent from the renderer to the browser. | 188 // Messages sent from the renderer to the browser. |
185 | 189 |
186 IPC_MESSAGE_ROUTED1(SyncCompositorHostMsg_UpdateState, | 190 IPC_MESSAGE_ROUTED1(SyncCompositorHostMsg_UpdateState, |
187 content::SyncCompositorCommonRendererParams) | 191 content::SyncCompositorCommonRendererParams) |
188 | 192 |
189 IPC_MESSAGE_ROUTED2(SyncCompositorHostMsg_OverScroll, | 193 IPC_MESSAGE_ROUTED2(SyncCompositorHostMsg_OverScroll, |
190 content::SyncCompositorCommonRendererParams, | 194 content::SyncCompositorCommonRendererParams, |
191 content::DidOverscrollParams) | 195 content::DidOverscrollParams) |
OLD | NEW |