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

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: Worked on review comments Created 5 years, 2 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 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 1295 matching lines...) Expand 10 before | Expand all | Expand 10 after
1306 switches::kEnableVtune, 1306 switches::kEnableVtune,
1307 switches::kEnableWebBluetooth, 1307 switches::kEnableWebBluetooth,
1308 switches::kEnableWebGLDraftExtensions, 1308 switches::kEnableWebGLDraftExtensions,
1309 switches::kEnableWebGLImageChromium, 1309 switches::kEnableWebGLImageChromium,
1310 switches::kEnableWebVR, 1310 switches::kEnableWebVR,
1311 switches::kExplicitlyAllowedPorts, 1311 switches::kExplicitlyAllowedPorts,
1312 switches::kForceDeviceScaleFactor, 1312 switches::kForceDeviceScaleFactor,
1313 switches::kForceDisplayList2dCanvas, 1313 switches::kForceDisplayList2dCanvas,
1314 switches::kForceOverlayFullscreenVideo, 1314 switches::kForceOverlayFullscreenVideo,
1315 switches::kFullMemoryCrashReport, 1315 switches::kFullMemoryCrashReport,
1316 switches::kInertVisualViewport,
1317 switches::kIPCConnectionTimeout, 1316 switches::kIPCConnectionTimeout,
1318 switches::kJavaScriptFlags, 1317 switches::kJavaScriptFlags,
1319 switches::kLoggingLevel, 1318 switches::kLoggingLevel,
1320 switches::kMainFrameResizesAreOrientationChanges, 1319 switches::kMainFrameResizesAreOrientationChanges,
1321 switches::kMaxUntiledLayerWidth, 1320 switches::kMaxUntiledLayerWidth,
1322 switches::kMaxUntiledLayerHeight, 1321 switches::kMaxUntiledLayerHeight,
1323 switches::kMemoryMetrics, 1322 switches::kMemoryMetrics,
1324 switches::kNoReferrers, 1323 switches::kNoReferrers,
1325 switches::kNoSandbox, 1324 switches::kNoSandbox,
1326 switches::kOverridePluginPowerSaverForTesting, 1325 switches::kOverridePluginPowerSaverForTesting,
(...skipping 1226 matching lines...) Expand 10 before | Expand all | Expand 10 after
2553 void RenderProcessHostImpl::GetAudioOutputControllers( 2552 void RenderProcessHostImpl::GetAudioOutputControllers(
2554 const GetAudioOutputControllersCallback& callback) const { 2553 const GetAudioOutputControllersCallback& callback) const {
2555 audio_renderer_host()->GetOutputControllers(callback); 2554 audio_renderer_host()->GetOutputControllers(callback);
2556 } 2555 }
2557 2556
2558 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2557 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2559 return bluetooth_dispatcher_host_.get(); 2558 return bluetooth_dispatcher_host_.get();
2560 } 2559 }
2561 2560
2562 } // namespace content 2561 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698