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

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

Issue 1016033006: Enable BeginFrame scheduling on aura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enable BeginFrame scheduling under flag Created 5 years, 7 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 1218 matching lines...) Expand 10 before | Expand all | Expand 10 after
1229 switches::kDisableSharedWorkers, 1229 switches::kDisableSharedWorkers,
1230 switches::kDisableSpeechAPI, 1230 switches::kDisableSpeechAPI,
1231 switches::kDisableSVG1DOM, 1231 switches::kDisableSVG1DOM,
1232 switches::kDisableThreadedCompositing, 1232 switches::kDisableThreadedCompositing,
1233 switches::kDisableThreadedScrolling, 1233 switches::kDisableThreadedScrolling,
1234 switches::kDisableTouchAdjustment, 1234 switches::kDisableTouchAdjustment,
1235 switches::kDisableTouchDragDrop, 1235 switches::kDisableTouchDragDrop,
1236 switches::kDisableTouchEditing, 1236 switches::kDisableTouchEditing,
1237 switches::kDisableV8IdleTasks, 1237 switches::kDisableV8IdleTasks,
1238 switches::kDomAutomationController, 1238 switches::kDomAutomationController,
1239 switches::kEnableBeginFrameScheduling,
1240 switches::kEnableBleedingEdgeRenderingFastPaths, 1239 switches::kEnableBleedingEdgeRenderingFastPaths,
1241 switches::kEnableBlinkFeatures, 1240 switches::kEnableBlinkFeatures,
1242 switches::kEnableBrowserSideNavigation, 1241 switches::kEnableBrowserSideNavigation,
1243 switches::kEnableCompositorAnimationTimelines, 1242 switches::kEnableCompositorAnimationTimelines,
1244 switches::kEnableCredentialManagerAPI, 1243 switches::kEnableCredentialManagerAPI,
1245 switches::kEnableDeferredImageDecoding, 1244 switches::kEnableDeferredImageDecoding,
1246 switches::kEnableDelayAgnosticAec, 1245 switches::kEnableDelayAgnosticAec,
1247 switches::kEnableDisplayList2dCanvas, 1246 switches::kEnableDisplayList2dCanvas,
1248 switches::kEnableDistanceFieldText, 1247 switches::kEnableDistanceFieldText,
1249 switches::kEnableExperimentalCanvasFeatures, 1248 switches::kEnableExperimentalCanvasFeatures,
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
1319 switches::kV, 1318 switches::kV,
1320 switches::kVideoThreads, 1319 switches::kVideoThreads,
1321 switches::kVideoUnderflowThresholdMs, 1320 switches::kVideoUnderflowThresholdMs,
1322 switches::kVModule, 1321 switches::kVModule,
1323 // Please keep these in alphabetical order. Compositor switches here should 1322 // Please keep these in alphabetical order. Compositor switches here should
1324 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1323 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1325 cc::switches::kCompositeToMailbox, 1324 cc::switches::kCompositeToMailbox,
1326 cc::switches::kDisableCompositedAntialiasing, 1325 cc::switches::kDisableCompositedAntialiasing,
1327 cc::switches::kDisableMainFrameBeforeActivation, 1326 cc::switches::kDisableMainFrameBeforeActivation,
1328 cc::switches::kDisableThreadedAnimation, 1327 cc::switches::kDisableThreadedAnimation,
1328 cc::switches::kEnableBeginFrameScheduling,
1329 cc::switches::kEnableGpuBenchmarking, 1329 cc::switches::kEnableGpuBenchmarking,
1330 cc::switches::kEnableMainFrameBeforeActivation, 1330 cc::switches::kEnableMainFrameBeforeActivation,
1331 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 1331 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
1332 cc::switches::kShowCompositedLayerBorders, 1332 cc::switches::kShowCompositedLayerBorders,
1333 cc::switches::kShowFPSCounter, 1333 cc::switches::kShowFPSCounter,
1334 cc::switches::kShowLayerAnimationBounds, 1334 cc::switches::kShowLayerAnimationBounds,
1335 cc::switches::kShowPropertyChangedRects, 1335 cc::switches::kShowPropertyChangedRects,
1336 cc::switches::kShowReplicaScreenSpaceRects, 1336 cc::switches::kShowReplicaScreenSpaceRects,
1337 cc::switches::kShowScreenSpaceRects, 1337 cc::switches::kShowScreenSpaceRects,
1338 cc::switches::kShowSurfaceDamageRects, 1338 cc::switches::kShowSurfaceDamageRects,
(...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after
2459 void RenderProcessHostImpl::GetAudioOutputControllers( 2459 void RenderProcessHostImpl::GetAudioOutputControllers(
2460 const GetAudioOutputControllersCallback& callback) const { 2460 const GetAudioOutputControllersCallback& callback) const {
2461 audio_renderer_host()->GetOutputControllers(callback); 2461 audio_renderer_host()->GetOutputControllers(callback);
2462 } 2462 }
2463 2463
2464 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2464 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2465 return bluetooth_dispatcher_host_.get(); 2465 return bluetooth_dispatcher_host_.get();
2466 } 2466 }
2467 2467
2468 } // namespace content 2468 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698