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

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

Issue 10834068: On Posix, make all child processes quit when the browser dies, not just the renderers. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 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/child_process_launcher.cc ('k') | content/common/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 #if defined(OS_WIN) 10 #if defined(OS_WIN)
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
798 switches::kInProcessWebGL, 798 switches::kInProcessWebGL,
799 switches::kJavaScriptFlags, 799 switches::kJavaScriptFlags,
800 switches::kLoggingLevel, 800 switches::kLoggingLevel,
801 switches::kOldCheckboxStyle, 801 switches::kOldCheckboxStyle,
802 switches::kNoReferrers, 802 switches::kNoReferrers,
803 switches::kNoSandbox, 803 switches::kNoSandbox,
804 switches::kPpapiOutOfProcess, 804 switches::kPpapiOutOfProcess,
805 switches::kRegisterPepperPlugins, 805 switches::kRegisterPepperPlugins,
806 switches::kRendererAssertTest, 806 switches::kRendererAssertTest,
807 #if defined(OS_POSIX) 807 #if defined(OS_POSIX)
808 switches::kRendererCleanExit, 808 switches::kChildCleanExit,
809 #endif 809 #endif
810 switches::kRendererStartupDialog, 810 switches::kRendererStartupDialog,
811 switches::kShowPaintRects, 811 switches::kShowPaintRects,
812 switches::kTestSandbox, 812 switches::kTestSandbox,
813 switches::kTraceStartup, 813 switches::kTraceStartup,
814 // This flag needs to be propagated to the renderer process for 814 // This flag needs to be propagated to the renderer process for
815 // --in-process-webgl. 815 // --in-process-webgl.
816 switches::kUseGL, 816 switches::kUseGL,
817 switches::kUserAgent, 817 switches::kUserAgent,
818 switches::kV, 818 switches::kV,
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
1510 int32 route_id, 1510 int32 route_id,
1511 int32 gpu_process_host_id) { 1511 int32 gpu_process_host_id) {
1512 TRACE_EVENT0("renderer_host", 1512 TRACE_EVENT0("renderer_host",
1513 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1513 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1514 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1514 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1515 gpu_process_host_id, 1515 gpu_process_host_id,
1516 0); 1516 0);
1517 } 1517 }
1518 1518
1519 } // namespace content 1519 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/child_process_launcher.cc ('k') | content/common/child_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698