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

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: Added chrome-side changes to enable inert visual viewport Created 5 years, 3 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 1314 matching lines...) Expand 10 before | Expand all | Expand 10 after
1325 switches::kEnableSeccompFilterSandbox, 1325 switches::kEnableSeccompFilterSandbox,
1326 switches::kEnableSkiaBenchmarking, 1326 switches::kEnableSkiaBenchmarking,
1327 switches::kEnableSlimmingPaintV2, 1327 switches::kEnableSlimmingPaintV2,
1328 switches::kEnableSmoothScrolling, 1328 switches::kEnableSmoothScrolling,
1329 switches::kEnableStatsTable, 1329 switches::kEnableStatsTable,
1330 switches::kEnableThreadedCompositing, 1330 switches::kEnableThreadedCompositing,
1331 switches::kEnableTouchDragDrop, 1331 switches::kEnableTouchDragDrop,
1332 switches::kEnableTouchEditing, 1332 switches::kEnableTouchEditing,
1333 switches::kEnableUnsafeES3APIs, 1333 switches::kEnableUnsafeES3APIs,
1334 switches::kEnableViewport, 1334 switches::kEnableViewport,
1335 switches::kInertVisualViewport,
Avi (use Gerrit) 2015/09/25 14:28:41 If the switches in a list are in alphabetical orde
ymalik 2015/09/25 14:36:41 My apologies for missing the detail. Done.
1335 switches::kEnableVtune, 1336 switches::kEnableVtune,
1336 switches::kEnableWebBluetooth, 1337 switches::kEnableWebBluetooth,
1337 switches::kEnableWebGLDraftExtensions, 1338 switches::kEnableWebGLDraftExtensions,
1338 switches::kEnableWebGLImageChromium, 1339 switches::kEnableWebGLImageChromium,
1339 switches::kEnableWebVR, 1340 switches::kEnableWebVR,
1340 switches::kExplicitlyAllowedPorts, 1341 switches::kExplicitlyAllowedPorts,
1341 switches::kForceDeviceScaleFactor, 1342 switches::kForceDeviceScaleFactor,
1342 switches::kForceDisplayList2dCanvas, 1343 switches::kForceDisplayList2dCanvas,
1343 switches::kForceOverlayFullscreenVideo, 1344 switches::kForceOverlayFullscreenVideo,
1344 switches::kFullMemoryCrashReport, 1345 switches::kFullMemoryCrashReport,
(...skipping 1215 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