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

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

Issue 1415513002: Remove plumbing for inert-visual-viewport flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 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 1320 matching lines...) Expand 10 before | Expand all | Expand 10 after
1331 switches::kEnableVtune, 1331 switches::kEnableVtune,
1332 switches::kEnableWebBluetooth, 1332 switches::kEnableWebBluetooth,
1333 switches::kEnableWebGLDraftExtensions, 1333 switches::kEnableWebGLDraftExtensions,
1334 switches::kEnableWebGLImageChromium, 1334 switches::kEnableWebGLImageChromium,
1335 switches::kEnableWebVR, 1335 switches::kEnableWebVR,
1336 switches::kExplicitlyAllowedPorts, 1336 switches::kExplicitlyAllowedPorts,
1337 switches::kForceDeviceScaleFactor, 1337 switches::kForceDeviceScaleFactor,
1338 switches::kForceDisplayList2dCanvas, 1338 switches::kForceDisplayList2dCanvas,
1339 switches::kForceOverlayFullscreenVideo, 1339 switches::kForceOverlayFullscreenVideo,
1340 switches::kFullMemoryCrashReport, 1340 switches::kFullMemoryCrashReport,
1341 switches::kInertVisualViewport,
1342 switches::kIPCConnectionTimeout, 1341 switches::kIPCConnectionTimeout,
1343 switches::kJavaScriptFlags, 1342 switches::kJavaScriptFlags,
1344 switches::kLoggingLevel, 1343 switches::kLoggingLevel,
1345 switches::kMainFrameResizesAreOrientationChanges, 1344 switches::kMainFrameResizesAreOrientationChanges,
1346 switches::kMaxUntiledLayerWidth, 1345 switches::kMaxUntiledLayerWidth,
1347 switches::kMaxUntiledLayerHeight, 1346 switches::kMaxUntiledLayerHeight,
1348 switches::kMemoryMetrics, 1347 switches::kMemoryMetrics,
1349 switches::kNoReferrers, 1348 switches::kNoReferrers,
1350 switches::kNoSandbox, 1349 switches::kNoSandbox,
1351 switches::kOverridePluginPowerSaverForTesting, 1350 switches::kOverridePluginPowerSaverForTesting,
(...skipping 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after
2584 void RenderProcessHostImpl::GetAudioOutputControllers( 2583 void RenderProcessHostImpl::GetAudioOutputControllers(
2585 const GetAudioOutputControllersCallback& callback) const { 2584 const GetAudioOutputControllersCallback& callback) const {
2586 audio_renderer_host()->GetOutputControllers(callback); 2585 audio_renderer_host()->GetOutputControllers(callback);
2587 } 2586 }
2588 2587
2589 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2588 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2590 return bluetooth_dispatcher_host_.get(); 2589 return bluetooth_dispatcher_host_.get();
2591 } 2590 }
2592 2591
2593 } // namespace content 2592 } // namespace content
OLDNEW
« no previous file with comments | « components/html_viewer/web_preferences.cc ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698