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

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

Issue 1286583002: Stop setting --enable-overlay-fullscreen-video on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: forgot namespace Created 5 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
« no previous file with comments | « content/browser/android/content_startup_flags.cc ('k') | content/child/runtime_features.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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 1304 matching lines...) Expand 10 before | Expand all | Expand 10 after
1315 switches::kEnableViewportMeta, 1315 switches::kEnableViewportMeta,
1316 switches::kInvertViewportScrollOrder, 1316 switches::kInvertViewportScrollOrder,
1317 switches::kEnableVtune, 1317 switches::kEnableVtune,
1318 switches::kEnableWebBluetooth, 1318 switches::kEnableWebBluetooth,
1319 switches::kEnableWebGLDraftExtensions, 1319 switches::kEnableWebGLDraftExtensions,
1320 switches::kEnableWebGLImageChromium, 1320 switches::kEnableWebGLImageChromium,
1321 switches::kEnableWebVR, 1321 switches::kEnableWebVR,
1322 switches::kExplicitlyAllowedPorts, 1322 switches::kExplicitlyAllowedPorts,
1323 switches::kForceDeviceScaleFactor, 1323 switches::kForceDeviceScaleFactor,
1324 switches::kForceDisplayList2dCanvas, 1324 switches::kForceDisplayList2dCanvas,
1325 switches::kForceOverlayFullscreenVideo,
1325 switches::kFullMemoryCrashReport, 1326 switches::kFullMemoryCrashReport,
1326 switches::kIPCConnectionTimeout, 1327 switches::kIPCConnectionTimeout,
1327 switches::kJavaScriptFlags, 1328 switches::kJavaScriptFlags,
1328 switches::kLoggingLevel, 1329 switches::kLoggingLevel,
1329 switches::kMainFrameResizesAreOrientationChanges, 1330 switches::kMainFrameResizesAreOrientationChanges,
1330 switches::kMaxUntiledLayerWidth, 1331 switches::kMaxUntiledLayerWidth,
1331 switches::kMaxUntiledLayerHeight, 1332 switches::kMaxUntiledLayerHeight,
1332 switches::kMemoryMetrics, 1333 switches::kMemoryMetrics,
1333 switches::kNoReferrers, 1334 switches::kNoReferrers,
1334 switches::kNoSandbox, 1335 switches::kNoSandbox,
(...skipping 1192 matching lines...) Expand 10 before | Expand all | Expand 10 after
2527 void RenderProcessHostImpl::GetAudioOutputControllers( 2528 void RenderProcessHostImpl::GetAudioOutputControllers(
2528 const GetAudioOutputControllersCallback& callback) const { 2529 const GetAudioOutputControllersCallback& callback) const {
2529 audio_renderer_host()->GetOutputControllers(callback); 2530 audio_renderer_host()->GetOutputControllers(callback);
2530 } 2531 }
2531 2532
2532 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2533 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2533 return bluetooth_dispatcher_host_.get(); 2534 return bluetooth_dispatcher_host_.get();
2534 } 2535 }
2535 2536
2536 } // namespace content 2537 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/android/content_startup_flags.cc ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698