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

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

Issue 1036823003: Fix to respect --explicitly-allowed-ports command line option-Chromium Side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | content/child/blink_platform_impl.h » ('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 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after
1290 switches::kEnableStrictSiteIsolation, 1290 switches::kEnableStrictSiteIsolation,
1291 switches::kEnableThreadedCompositing, 1291 switches::kEnableThreadedCompositing,
1292 switches::kEnableTouchDragDrop, 1292 switches::kEnableTouchDragDrop,
1293 switches::kEnableTouchEditing, 1293 switches::kEnableTouchEditing,
1294 switches::kEnableUnsafeES3APIs, 1294 switches::kEnableUnsafeES3APIs,
1295 switches::kEnableViewport, 1295 switches::kEnableViewport,
1296 switches::kEnableViewportMeta, 1296 switches::kEnableViewportMeta,
1297 switches::kEnableVtune, 1297 switches::kEnableVtune,
1298 switches::kEnableWebGLDraftExtensions, 1298 switches::kEnableWebGLDraftExtensions,
1299 switches::kEnableWebGLImageChromium, 1299 switches::kEnableWebGLImageChromium,
1300 switches::kExplicitlyAllowedPorts,
1300 switches::kForceDeviceScaleFactor, 1301 switches::kForceDeviceScaleFactor,
1301 switches::kForceDisplayList2dCanvas, 1302 switches::kForceDisplayList2dCanvas,
1302 switches::kFullMemoryCrashReport, 1303 switches::kFullMemoryCrashReport,
1303 switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode, 1304 switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode,
1304 switches::kIPCConnectionTimeout, 1305 switches::kIPCConnectionTimeout,
1305 switches::kJavaScriptFlags, 1306 switches::kJavaScriptFlags,
1306 switches::kLoggingLevel, 1307 switches::kLoggingLevel,
1307 switches::kMainFrameResizesAreOrientationChanges, 1308 switches::kMainFrameResizesAreOrientationChanges,
1308 switches::kMaxUntiledLayerWidth, 1309 switches::kMaxUntiledLayerWidth,
1309 switches::kMaxUntiledLayerHeight, 1310 switches::kMaxUntiledLayerHeight,
(...skipping 1163 matching lines...) Expand 10 before | Expand all | Expand 10 after
2473 if (worker_ref_count_ == 0) 2474 if (worker_ref_count_ == 0)
2474 Cleanup(); 2475 Cleanup();
2475 } 2476 }
2476 2477
2477 void RenderProcessHostImpl::GetAudioOutputControllers( 2478 void RenderProcessHostImpl::GetAudioOutputControllers(
2478 const GetAudioOutputControllersCallback& callback) const { 2479 const GetAudioOutputControllersCallback& callback) const {
2479 audio_renderer_host()->GetOutputControllers(callback); 2480 audio_renderer_host()->GetOutputControllers(callback);
2480 } 2481 }
2481 2482
2482 } // namespace content 2483 } // namespace content
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | content/child/blink_platform_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698