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 // Represents the browser side of the browser <--> renderer communication | 5 // Represents the browser side of the browser <--> renderer communication |
6 // channel. There will be one RenderProcessHost per renderer process. | 6 // channel. There will be one RenderProcessHost per renderer process. |
7 | 7 |
8 #include "content/browser/renderer_host/render_process_host_impl.h" | 8 #include "content/browser/renderer_host/render_process_host_impl.h" |
9 | 9 |
10 #include <algorithm> | 10 #include <algorithm> |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 #include "ipc/ipc_channel.h" | 116 #include "ipc/ipc_channel.h" |
117 #include "ipc/ipc_logging.h" | 117 #include "ipc/ipc_logging.h" |
118 #include "ipc/ipc_platform_file.h" | 118 #include "ipc/ipc_platform_file.h" |
119 #include "ipc/ipc_switches.h" | 119 #include "ipc/ipc_switches.h" |
120 #include "ipc/ipc_sync_channel.h" | 120 #include "ipc/ipc_sync_channel.h" |
121 #include "media/base/media_switches.h" | 121 #include "media/base/media_switches.h" |
122 #include "net/url_request/url_request_context_getter.h" | 122 #include "net/url_request/url_request_context_getter.h" |
123 #include "ppapi/shared_impl/ppapi_switches.h" | 123 #include "ppapi/shared_impl/ppapi_switches.h" |
124 #include "ui/base/ui_base_switches.h" | 124 #include "ui/base/ui_base_switches.h" |
125 #include "ui/gl/gl_switches.h" | 125 #include "ui/gl/gl_switches.h" |
126 #include "webkit/fileapi/sandbox_mount_point_provider.h" | 126 #include "webkit/browser/fileapi/sandbox_mount_point_provider.h" |
127 #include "webkit/glue/resource_type.h" | 127 #include "webkit/glue/resource_type.h" |
128 #include "webkit/plugins/plugin_switches.h" | 128 #include "webkit/plugins/plugin_switches.h" |
129 | 129 |
130 #if defined(OS_WIN) | 130 #if defined(OS_WIN) |
131 #include "base/win/scoped_com_initializer.h" | 131 #include "base/win/scoped_com_initializer.h" |
132 #include "content/common/font_cache_dispatcher_win.h" | 132 #include "content/common/font_cache_dispatcher_win.h" |
133 #include "content/common/sandbox_win.h" | 133 #include "content/common/sandbox_win.h" |
134 #include "content/public/common/sandboxed_process_launcher_delegate.h" | 134 #include "content/public/common/sandboxed_process_launcher_delegate.h" |
135 #endif | 135 #endif |
136 | 136 |
(...skipping 1618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1755 TRACE_EVENT0("renderer_host", | 1755 TRACE_EVENT0("renderer_host", |
1756 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1756 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1757 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; | 1757 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; |
1758 ack_params.sync_point = 0; | 1758 ack_params.sync_point = 0; |
1759 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1759 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1760 gpu_process_host_id, | 1760 gpu_process_host_id, |
1761 ack_params); | 1761 ack_params); |
1762 } | 1762 } |
1763 | 1763 |
1764 } // namespace content | 1764 } // namespace content |
OLD | NEW |