Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 343543002: Increase the child process connection timeout for browser tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/browser/browser_child_process_host_impl.cc ('k') | content/child/child_thread.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/browser/browser_child_process_host_impl.cc ('k') | content/child/child_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698