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

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: Fix codereview issues. 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::kEnableCompositorAnimationTimelines,
1244 switches::kEnableCredentialManagerAPI, 1244 switches::kEnableCredentialManagerAPI,
1245 switches::kEnableDeferredImageDecoding, 1245 switches::kEnableDeferredImageDecoding,
1246 switches::kEnableDelayAgnosticAec, 1246 switches::kEnableDelayAgnosticAec,
1247 switches::kEnableDisplayList2dCanvas, 1247 switches::kEnableDisplayList2dCanvas,
1248 switches::kEnableDistanceFieldText, 1248 switches::kEnableDistanceFieldText,
1249 switches::kEnableExperimentalCanvasFeatures, 1249 switches::kEnableExperimentalCanvasFeatures,
1250 switches::kEnableExperimentalWebPlatformFeatures, 1250 switches::kEnableExperimentalWebPlatformFeatures,
1251 switches::kEnableGPUClientLogging, 1251 switches::kEnableGPUClientLogging,
1252 switches::kEnableGpuClientTracing, 1252 switches::kEnableGpuClientTracing,
1253 switches::kEnableGPUServiceLogging, 1253 switches::kEnableGPUServiceLogging,
1254 switches::kEnableLinkDisambiguationPopup, 1254 switches::kEnableLinkDisambiguationPopup,
1255 switches::kEnableLowResTiling, 1255 switches::kEnableLowResTiling,
1256 switches::kEnableInbandTextTracks, 1256 switches::kEnableInbandTextTracks,
1257 switches::kEnableLCDText, 1257 switches::kEnableLCDText,
1258 switches::kEnableLogging, 1258 switches::kEnableLogging,
1259 switches::kEnableMemoryBenchmarking, 1259 switches::kEnableMemoryBenchmarking,
1260 switches::kEnableNetworkInformation, 1260 switches::kEnableNetworkInformation,
1261 switches::kEnableOverlayFullscreenVideo, 1261 switches::kEnableOverlayFullscreenVideo,
1262 switches::kEnableOverlayScrollbar, 1262 switches::kEnableOverlayScrollbar,
1263 switches::kEnablePinch, 1263 switches::kEnablePinch,
1264 switches::kEnablePreciseMemoryInfo, 1264 switches::kEnablePreciseMemoryInfo,
1265 switches::kEnablePreferCompositingToLCDText,
1265 switches::kEnablePushMessagePayload, 1266 switches::kEnablePushMessagePayload,
1266 switches::kEnablePushMessagingHasPermission, 1267 switches::kEnablePushMessagingHasPermission,
1267 switches::kEnableRendererMojoChannel, 1268 switches::kEnableRendererMojoChannel,
1268 switches::kEnableSeccompFilterSandbox, 1269 switches::kEnableSeccompFilterSandbox,
1269 switches::kEnableSkiaBenchmarking, 1270 switches::kEnableSkiaBenchmarking,
1270 switches::kEnableSlimmingPaint, 1271 switches::kEnableSlimmingPaint,
1271 switches::kEnableSmoothScrolling, 1272 switches::kEnableSmoothScrolling,
1272 switches::kEnableStatsTable, 1273 switches::kEnableStatsTable,
1273 switches::kEnableStrictSiteIsolation, 1274 switches::kEnableStrictSiteIsolation,
1274 switches::kEnableThreadedCompositing, 1275 switches::kEnableThreadedCompositing,
(...skipping 1135 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