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

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

Issue 1712483002: CL for perf tryjob on android Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 | « cc/trees/layer_tree_host_impl.cc ('k') | content/renderer/gpu/render_widget_compositor.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 1509 matching lines...) Expand 10 before | Expand all | Expand 10 after
1520 // Please keep these in alphabetical order. Compositor switches here should 1520 // Please keep these in alphabetical order. Compositor switches here should
1521 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1521 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1522 cc::switches::kDisableCachedPictureRaster, 1522 cc::switches::kDisableCachedPictureRaster,
1523 cc::switches::kDisableCompositedAntialiasing, 1523 cc::switches::kDisableCompositedAntialiasing,
1524 cc::switches::kDisableCompositorPropertyTrees, 1524 cc::switches::kDisableCompositorPropertyTrees,
1525 cc::switches::kDisableMainFrameBeforeActivation, 1525 cc::switches::kDisableMainFrameBeforeActivation,
1526 cc::switches::kDisableThreadedAnimation, 1526 cc::switches::kDisableThreadedAnimation,
1527 cc::switches::kEnableBeginFrameScheduling, 1527 cc::switches::kEnableBeginFrameScheduling,
1528 cc::switches::kEnableGpuBenchmarking, 1528 cc::switches::kEnableGpuBenchmarking,
1529 cc::switches::kEnableMainFrameBeforeActivation, 1529 cc::switches::kEnableMainFrameBeforeActivation,
1530 cc::switches::kEnableTileCompression,
1530 cc::switches::kShowCompositedLayerBorders, 1531 cc::switches::kShowCompositedLayerBorders,
1531 cc::switches::kShowFPSCounter, 1532 cc::switches::kShowFPSCounter,
1532 cc::switches::kShowLayerAnimationBounds, 1533 cc::switches::kShowLayerAnimationBounds,
1533 cc::switches::kShowPropertyChangedRects, 1534 cc::switches::kShowPropertyChangedRects,
1534 cc::switches::kShowReplicaScreenSpaceRects, 1535 cc::switches::kShowReplicaScreenSpaceRects,
1535 cc::switches::kShowScreenSpaceRects, 1536 cc::switches::kShowScreenSpaceRects,
1536 cc::switches::kShowSurfaceDamageRects, 1537 cc::switches::kShowSurfaceDamageRects,
1537 cc::switches::kSlowDownRasterScaleFactor, 1538 cc::switches::kSlowDownRasterScaleFactor,
1538 cc::switches::kStrictLayerPropertyChangeChecking, 1539 cc::switches::kStrictLayerPropertyChangeChecking,
1539 cc::switches::kTopControlsHideThreshold, 1540 cc::switches::kTopControlsHideThreshold,
(...skipping 1250 matching lines...) Expand 10 before | Expand all | Expand 10 after
2790 void RenderProcessHostImpl::GetAudioOutputControllers( 2791 void RenderProcessHostImpl::GetAudioOutputControllers(
2791 const GetAudioOutputControllersCallback& callback) const { 2792 const GetAudioOutputControllersCallback& callback) const {
2792 audio_renderer_host()->GetOutputControllers(callback); 2793 audio_renderer_host()->GetOutputControllers(callback);
2793 } 2794 }
2794 2795
2795 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2796 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2796 return bluetooth_dispatcher_host_.get(); 2797 return bluetooth_dispatcher_host_.get();
2797 } 2798 }
2798 2799
2799 } // namespace content 2800 } // namespace content
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_impl.cc ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698