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

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

Issue 1146053009: Added experiment for changing viewport scroll ordering. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added new about_flag to histograms.xml Created 5 years, 6 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 1281 matching lines...) Expand 10 before | Expand all | Expand 10 after
1292 switches::kEnableSmoothScrolling, 1292 switches::kEnableSmoothScrolling,
1293 switches::kEnableStaleWhileRevalidate, 1293 switches::kEnableStaleWhileRevalidate,
1294 switches::kEnableStatsTable, 1294 switches::kEnableStatsTable,
1295 switches::kEnableStrictSiteIsolation, 1295 switches::kEnableStrictSiteIsolation,
1296 switches::kEnableThreadedCompositing, 1296 switches::kEnableThreadedCompositing,
1297 switches::kEnableTouchDragDrop, 1297 switches::kEnableTouchDragDrop,
1298 switches::kEnableTouchEditing, 1298 switches::kEnableTouchEditing,
1299 switches::kEnableUnsafeES3APIs, 1299 switches::kEnableUnsafeES3APIs,
1300 switches::kEnableViewport, 1300 switches::kEnableViewport,
1301 switches::kEnableViewportMeta, 1301 switches::kEnableViewportMeta,
1302 switches::kInvertViewportScrollOrder,
1302 switches::kEnableVtune, 1303 switches::kEnableVtune,
1303 switches::kEnableWebBluetooth, 1304 switches::kEnableWebBluetooth,
1304 switches::kEnableWebGLDraftExtensions, 1305 switches::kEnableWebGLDraftExtensions,
1305 switches::kEnableWebGLImageChromium, 1306 switches::kEnableWebGLImageChromium,
1306 switches::kExplicitlyAllowedPorts, 1307 switches::kExplicitlyAllowedPorts,
1307 switches::kForceDeviceScaleFactor, 1308 switches::kForceDeviceScaleFactor,
1308 switches::kForceDisplayList2dCanvas, 1309 switches::kForceDisplayList2dCanvas,
1309 switches::kFullMemoryCrashReport, 1310 switches::kFullMemoryCrashReport,
1310 switches::kIPCConnectionTimeout, 1311 switches::kIPCConnectionTimeout,
1311 switches::kJavaScriptFlags, 1312 switches::kJavaScriptFlags,
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after
2503 void RenderProcessHostImpl::GetAudioOutputControllers( 2504 void RenderProcessHostImpl::GetAudioOutputControllers(
2504 const GetAudioOutputControllersCallback& callback) const { 2505 const GetAudioOutputControllersCallback& callback) const {
2505 audio_renderer_host()->GetOutputControllers(callback); 2506 audio_renderer_host()->GetOutputControllers(callback);
2506 } 2507 }
2507 2508
2508 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2509 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2509 return bluetooth_dispatcher_host_.get(); 2510 return bluetooth_dispatcher_host_.get();
2510 } 2511 }
2511 2512
2512 } // namespace content 2513 } // 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