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

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

Issue 986173002: Animations: Implement runtime flag for enabling compositor animation timelines. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move switch from cc to content. Introduce ui switch. Created 5 years, 9 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 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, 1239 switches::kEnableBeginFrameScheduling,
1240 switches::kEnableBleedingEdgeRenderingFastPaths, 1240 switches::kEnableBleedingEdgeRenderingFastPaths,
1241 switches::kEnableBlinkFeatures, 1241 switches::kEnableBlinkFeatures,
1242 switches::kEnableBrowserSideNavigation, 1242 switches::kEnableBrowserSideNavigation,
1243 switches::kEnablePreferCompositingToLCDText, 1243 switches::kEnablePreferCompositingToLCDText,
danakj 2015/03/12 20:29:57 mind moving this to be alphabetical while you're h
loyso (OOO) 2015/03/12 23:18:50 Acknowledged.
1244 switches::kEnableCompositorAnimationTimelines,
1244 switches::kEnableCredentialManagerAPI, 1245 switches::kEnableCredentialManagerAPI,
1245 switches::kEnableDeferredImageDecoding, 1246 switches::kEnableDeferredImageDecoding,
1246 switches::kEnableDelayAgnosticAec, 1247 switches::kEnableDelayAgnosticAec,
1247 switches::kEnableDisplayList2dCanvas, 1248 switches::kEnableDisplayList2dCanvas,
1248 switches::kEnableDistanceFieldText, 1249 switches::kEnableDistanceFieldText,
1249 switches::kEnableExperimentalCanvasFeatures, 1250 switches::kEnableExperimentalCanvasFeatures,
1250 switches::kEnableExperimentalWebPlatformFeatures, 1251 switches::kEnableExperimentalWebPlatformFeatures,
1251 switches::kEnableGPUClientLogging, 1252 switches::kEnableGPUClientLogging,
1252 switches::kEnableGpuClientTracing, 1253 switches::kEnableGpuClientTracing,
1253 switches::kEnableGPUServiceLogging, 1254 switches::kEnableGPUServiceLogging,
(...skipping 1156 matching lines...) Expand 10 before | Expand all | Expand 10 after
2410 if (worker_ref_count_ == 0) 2411 if (worker_ref_count_ == 0)
2411 Cleanup(); 2412 Cleanup();
2412 } 2413 }
2413 2414
2414 void RenderProcessHostImpl::GetAudioOutputControllers( 2415 void RenderProcessHostImpl::GetAudioOutputControllers(
2415 const GetAudioOutputControllersCallback& callback) const { 2416 const GetAudioOutputControllersCallback& callback) const {
2416 audio_renderer_host()->GetOutputControllers(callback); 2417 audio_renderer_host()->GetOutputControllers(callback);
2417 } 2418 }
2418 2419
2419 } // namespace content 2420 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698