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 1148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1159 switches::kMainFrameResizesAreOrientationChanges, | 1159 switches::kMainFrameResizesAreOrientationChanges, |
1160 switches::kEnableVtune, | 1160 switches::kEnableVtune, |
1161 switches::kEnableWebAnimationsSVG, | 1161 switches::kEnableWebAnimationsSVG, |
1162 switches::kEnableWebGLDraftExtensions, | 1162 switches::kEnableWebGLDraftExtensions, |
1163 switches::kEnableWebGLImageChromium, | 1163 switches::kEnableWebGLImageChromium, |
1164 switches::kEnableWebMIDI, | 1164 switches::kEnableWebMIDI, |
1165 switches::kEnableZeroCopy, | 1165 switches::kEnableZeroCopy, |
1166 switches::kForceDeviceScaleFactor, | 1166 switches::kForceDeviceScaleFactor, |
1167 switches::kFullMemoryCrashReport, | 1167 switches::kFullMemoryCrashReport, |
1168 switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode, | 1168 switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode, |
| 1169 switches::kIPCConnectionTimeout, |
1169 switches::kJavaScriptFlags, | 1170 switches::kJavaScriptFlags, |
1170 switches::kLoggingLevel, | 1171 switches::kLoggingLevel, |
1171 switches::kMaxUntiledLayerWidth, | 1172 switches::kMaxUntiledLayerWidth, |
1172 switches::kMaxUntiledLayerHeight, | 1173 switches::kMaxUntiledLayerHeight, |
1173 switches::kMemoryMetrics, | 1174 switches::kMemoryMetrics, |
1174 switches::kNoReferrers, | 1175 switches::kNoReferrers, |
1175 switches::kNoSandbox, | 1176 switches::kNoSandbox, |
1176 switches::kNumRasterThreads, | 1177 switches::kNumRasterThreads, |
1177 switches::kPpapiInProcess, | 1178 switches::kPpapiInProcess, |
1178 switches::kProfilerTiming, | 1179 switches::kProfilerTiming, |
(...skipping 1179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2358 void RenderProcessHostImpl::GpuMemoryBufferAllocated( | 2359 void RenderProcessHostImpl::GpuMemoryBufferAllocated( |
2359 IPC::Message* reply, | 2360 IPC::Message* reply, |
2360 const gfx::GpuMemoryBufferHandle& handle) { | 2361 const gfx::GpuMemoryBufferHandle& handle) { |
2361 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 2362 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
2362 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, | 2363 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, |
2363 handle); | 2364 handle); |
2364 Send(reply); | 2365 Send(reply); |
2365 } | 2366 } |
2366 | 2367 |
2367 } // namespace content | 2368 } // namespace content |
OLD | NEW |