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

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

Issue 285283003: Remove flag --test-sandbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed directory, gyp and isolate refs Created 6 years, 7 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
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 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1121 switches::kNumRasterThreads, 1121 switches::kNumRasterThreads,
1122 switches::kPpapiInProcess, 1122 switches::kPpapiInProcess,
1123 switches::kProfilerTiming, 1123 switches::kProfilerTiming,
1124 switches::kReduceSecurityForTesting, 1124 switches::kReduceSecurityForTesting,
1125 switches::kRegisterPepperPlugins, 1125 switches::kRegisterPepperPlugins,
1126 switches::kRendererAssertTest, 1126 switches::kRendererAssertTest,
1127 switches::kRendererStartupDialog, 1127 switches::kRendererStartupDialog,
1128 switches::kShowPaintRects, 1128 switches::kShowPaintRects,
1129 switches::kSitePerProcess, 1129 switches::kSitePerProcess,
1130 switches::kStatsCollectionController, 1130 switches::kStatsCollectionController,
1131 switches::kTestSandbox,
1132 switches::kTestType, 1131 switches::kTestType,
1133 switches::kTouchEvents, 1132 switches::kTouchEvents,
1134 switches::kTraceToConsole, 1133 switches::kTraceToConsole,
1135 switches::kUseDiscardableMemory, 1134 switches::kUseDiscardableMemory,
1136 // This flag needs to be propagated to the renderer process for 1135 // This flag needs to be propagated to the renderer process for
1137 // --in-process-webgl. 1136 // --in-process-webgl.
1138 switches::kUseGL, 1137 switches::kUseGL,
1139 switches::kUseMobileUserAgent, 1138 switches::kUseMobileUserAgent,
1140 switches::kV, 1139 switches::kV,
1141 switches::kVideoThreads, 1140 switches::kVideoThreads,
(...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 mojo::ScopedMessagePipeHandle handle) { 2074 mojo::ScopedMessagePipeHandle handle) {
2076 mojo_activation_required_ = true; 2075 mojo_activation_required_ = true;
2077 MaybeActivateMojo(); 2076 MaybeActivateMojo();
2078 2077
2079 mojo::AllocationScope scope; 2078 mojo::AllocationScope scope;
2080 mojo_application_host_->shell_client()->AcceptConnection(service_name, 2079 mojo_application_host_->shell_client()->AcceptConnection(service_name,
2081 handle.Pass()); 2080 handle.Pass());
2082 } 2081 }
2083 2082
2084 } // namespace content 2083 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698