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 1366893002: Make window.scroll properties relative to the layout viewport. (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
« 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 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after
1335 switches::kEnableVtune, 1335 switches::kEnableVtune,
1336 switches::kEnableWebBluetooth, 1336 switches::kEnableWebBluetooth,
1337 switches::kEnableWebGLDraftExtensions, 1337 switches::kEnableWebGLDraftExtensions,
1338 switches::kEnableWebGLImageChromium, 1338 switches::kEnableWebGLImageChromium,
1339 switches::kEnableWebVR, 1339 switches::kEnableWebVR,
1340 switches::kExplicitlyAllowedPorts, 1340 switches::kExplicitlyAllowedPorts,
1341 switches::kForceDeviceScaleFactor, 1341 switches::kForceDeviceScaleFactor,
1342 switches::kForceDisplayList2dCanvas, 1342 switches::kForceDisplayList2dCanvas,
1343 switches::kForceOverlayFullscreenVideo, 1343 switches::kForceOverlayFullscreenVideo,
1344 switches::kFullMemoryCrashReport, 1344 switches::kFullMemoryCrashReport,
1345 switches::kInertVisualViewport,
1345 switches::kIPCConnectionTimeout, 1346 switches::kIPCConnectionTimeout,
1346 switches::kJavaScriptFlags, 1347 switches::kJavaScriptFlags,
1347 switches::kLoggingLevel, 1348 switches::kLoggingLevel,
1348 switches::kMainFrameResizesAreOrientationChanges, 1349 switches::kMainFrameResizesAreOrientationChanges,
1349 switches::kMaxUntiledLayerWidth, 1350 switches::kMaxUntiledLayerWidth,
1350 switches::kMaxUntiledLayerHeight, 1351 switches::kMaxUntiledLayerHeight,
1351 switches::kMemoryMetrics, 1352 switches::kMemoryMetrics,
1352 switches::kNoReferrers, 1353 switches::kNoReferrers,
1353 switches::kNoSandbox, 1354 switches::kNoSandbox,
1354 switches::kOverridePluginPowerSaverForTesting, 1355 switches::kOverridePluginPowerSaverForTesting,
(...skipping 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after
2560 void RenderProcessHostImpl::GetAudioOutputControllers( 2561 void RenderProcessHostImpl::GetAudioOutputControllers(
2561 const GetAudioOutputControllersCallback& callback) const { 2562 const GetAudioOutputControllersCallback& callback) const {
2562 audio_renderer_host()->GetOutputControllers(callback); 2563 audio_renderer_host()->GetOutputControllers(callback);
2563 } 2564 }
2564 2565
2565 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2566 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2566 return bluetooth_dispatcher_host_.get(); 2567 return bluetooth_dispatcher_host_.get();
2567 } 2568 }
2568 2569
2569 } // namespace content 2570 } // 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