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 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 #include "content/public/common/url_constants.h" | 107 #include "content/public/common/url_constants.h" |
108 #include "content/renderer/render_process_impl.h" | 108 #include "content/renderer/render_process_impl.h" |
109 #include "content/renderer/render_thread_impl.h" | 109 #include "content/renderer/render_thread_impl.h" |
110 #include "ipc/ipc_channel.h" | 110 #include "ipc/ipc_channel.h" |
111 #include "ipc/ipc_logging.h" | 111 #include "ipc/ipc_logging.h" |
112 #include "ipc/ipc_platform_file.h" | 112 #include "ipc/ipc_platform_file.h" |
113 #include "ipc/ipc_switches.h" | 113 #include "ipc/ipc_switches.h" |
114 #include "ipc/ipc_sync_channel.h" | 114 #include "ipc/ipc_sync_channel.h" |
115 #include "media/base/media_switches.h" | 115 #include "media/base/media_switches.h" |
116 #include "net/url_request/url_request_context_getter.h" | 116 #include "net/url_request/url_request_context_getter.h" |
| 117 #include "ppapi/shared_impl/ppapi_switches.h" |
117 #include "ui/base/ui_base_switches.h" | 118 #include "ui/base/ui_base_switches.h" |
118 #include "ui/gl/gl_switches.h" | 119 #include "ui/gl/gl_switches.h" |
119 #include "webkit/fileapi/sandbox_mount_point_provider.h" | 120 #include "webkit/fileapi/sandbox_mount_point_provider.h" |
120 #include "webkit/glue/resource_type.h" | 121 #include "webkit/glue/resource_type.h" |
121 #include "webkit/plugins/plugin_switches.h" | 122 #include "webkit/plugins/plugin_switches.h" |
122 | 123 |
123 #if defined(OS_WIN) | 124 #if defined(OS_WIN) |
124 #include "content/common/font_cache_dispatcher_win.h" | 125 #include "content/common/font_cache_dispatcher_win.h" |
125 #endif | 126 #endif |
126 | 127 |
(...skipping 1440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1567 const gfx::Size& size, | 1568 const gfx::Size& size, |
1568 int32 gpu_process_host_id) { | 1569 int32 gpu_process_host_id) { |
1569 TRACE_EVENT0("renderer_host", | 1570 TRACE_EVENT0("renderer_host", |
1570 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1571 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1571 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1572 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1572 gpu_process_host_id, | 1573 gpu_process_host_id, |
1573 0); | 1574 0); |
1574 } | 1575 } |
1575 | 1576 |
1576 } // namespace content | 1577 } // namespace content |
OLD | NEW |