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 1724103002: Reverting changes that made window.scroll properties relative to the layout viewport. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2623
Patch Set: Created 4 years, 10 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/browser/about_flags.cc ('k') | content/browser/renderer_host/render_view_host_impl.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 1412 matching lines...) Expand 10 before | Expand all | Expand 10 after
1423 switches::kEnableVtune, 1423 switches::kEnableVtune,
1424 switches::kEnableWebBluetooth, 1424 switches::kEnableWebBluetooth,
1425 switches::kEnableWebGLDraftExtensions, 1425 switches::kEnableWebGLDraftExtensions,
1426 switches::kEnableWebGLImageChromium, 1426 switches::kEnableWebGLImageChromium,
1427 switches::kEnableWebVR, 1427 switches::kEnableWebVR,
1428 switches::kExplicitlyAllowedPorts, 1428 switches::kExplicitlyAllowedPorts,
1429 switches::kForceDeviceScaleFactor, 1429 switches::kForceDeviceScaleFactor,
1430 switches::kForceDisplayList2dCanvas, 1430 switches::kForceDisplayList2dCanvas,
1431 switches::kForceOverlayFullscreenVideo, 1431 switches::kForceOverlayFullscreenVideo,
1432 switches::kFullMemoryCrashReport, 1432 switches::kFullMemoryCrashReport,
1433 switches::kInertVisualViewport,
1433 switches::kIPCConnectionTimeout, 1434 switches::kIPCConnectionTimeout,
1434 switches::kJavaScriptFlags, 1435 switches::kJavaScriptFlags,
1435 switches::kLoggingLevel, 1436 switches::kLoggingLevel,
1436 switches::kMainFrameResizesAreOrientationChanges, 1437 switches::kMainFrameResizesAreOrientationChanges,
1437 switches::kMaxUntiledLayerWidth, 1438 switches::kMaxUntiledLayerWidth,
1438 switches::kMaxUntiledLayerHeight, 1439 switches::kMaxUntiledLayerHeight,
1439 switches::kMemoryMetrics, 1440 switches::kMemoryMetrics,
1440 switches::kNoReferrers, 1441 switches::kNoReferrers,
1441 switches::kNoSandbox, 1442 switches::kNoSandbox,
1442 switches::kOverridePluginPowerSaverForTesting, 1443 switches::kOverridePluginPowerSaverForTesting,
(...skipping 1320 matching lines...) Expand 10 before | Expand all | Expand 10 after
2763 void RenderProcessHostImpl::GetAudioOutputControllers( 2764 void RenderProcessHostImpl::GetAudioOutputControllers(
2764 const GetAudioOutputControllersCallback& callback) const { 2765 const GetAudioOutputControllersCallback& callback) const {
2765 audio_renderer_host()->GetOutputControllers(callback); 2766 audio_renderer_host()->GetOutputControllers(callback);
2766 } 2767 }
2767 2768
2768 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2769 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2769 return bluetooth_dispatcher_host_.get(); 2770 return bluetooth_dispatcher_host_.get();
2770 } 2771 }
2771 2772
2772 } // namespace content 2773 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.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