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

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: Rebase Created 5 years, 8 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 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after
1258 switches::kDisableThreadedScrolling, 1258 switches::kDisableThreadedScrolling,
1259 switches::kDisableTouchAdjustment, 1259 switches::kDisableTouchAdjustment,
1260 switches::kDisableTouchDragDrop, 1260 switches::kDisableTouchDragDrop,
1261 switches::kDisableTouchEditing, 1261 switches::kDisableTouchEditing,
1262 switches::kDisableV8IdleTasks, 1262 switches::kDisableV8IdleTasks,
1263 switches::kDomAutomationController, 1263 switches::kDomAutomationController,
1264 switches::kEnableBeginFrameScheduling, 1264 switches::kEnableBeginFrameScheduling,
1265 switches::kEnableBleedingEdgeRenderingFastPaths, 1265 switches::kEnableBleedingEdgeRenderingFastPaths,
1266 switches::kEnableBlinkFeatures, 1266 switches::kEnableBlinkFeatures,
1267 switches::kEnableBrowserSideNavigation, 1267 switches::kEnableBrowserSideNavigation,
1268 switches::kEnablePreferCompositingToLCDText, 1268 switches::kEnableCompositorAnimationTimelines,
1269 switches::kEnableCredentialManagerAPI, 1269 switches::kEnableCredentialManagerAPI,
1270 switches::kEnableDeferredImageDecoding, 1270 switches::kEnableDeferredImageDecoding,
1271 switches::kEnableDelayAgnosticAec, 1271 switches::kEnableDelayAgnosticAec,
1272 switches::kEnableDisplayList2dCanvas, 1272 switches::kEnableDisplayList2dCanvas,
1273 switches::kEnableDistanceFieldText, 1273 switches::kEnableDistanceFieldText,
1274 switches::kEnableExperimentalCanvasFeatures, 1274 switches::kEnableExperimentalCanvasFeatures,
1275 switches::kEnableExperimentalWebPlatformFeatures, 1275 switches::kEnableExperimentalWebPlatformFeatures,
1276 switches::kEnableGPUClientLogging, 1276 switches::kEnableGPUClientLogging,
1277 switches::kEnableGpuClientTracing, 1277 switches::kEnableGpuClientTracing,
1278 switches::kEnableGPUServiceLogging, 1278 switches::kEnableGPUServiceLogging,
1279 switches::kEnableLinkDisambiguationPopup, 1279 switches::kEnableLinkDisambiguationPopup,
1280 switches::kEnableLowResTiling, 1280 switches::kEnableLowResTiling,
1281 switches::kEnableInbandTextTracks, 1281 switches::kEnableInbandTextTracks,
1282 switches::kEnableLCDText, 1282 switches::kEnableLCDText,
1283 switches::kEnableLogging, 1283 switches::kEnableLogging,
1284 switches::kEnableMemoryBenchmarking, 1284 switches::kEnableMemoryBenchmarking,
1285 switches::kEnableNetworkInformation, 1285 switches::kEnableNetworkInformation,
1286 switches::kEnableOverlayFullscreenVideo, 1286 switches::kEnableOverlayFullscreenVideo,
1287 switches::kEnableOverlayScrollbar, 1287 switches::kEnableOverlayScrollbar,
1288 switches::kEnablePinch, 1288 switches::kEnablePinch,
1289 switches::kEnablePreciseMemoryInfo, 1289 switches::kEnablePreciseMemoryInfo,
1290 switches::kEnablePreferCompositingToLCDText,
1290 switches::kEnablePushMessagePayload, 1291 switches::kEnablePushMessagePayload,
1291 switches::kEnablePushMessagingHasPermission, 1292 switches::kEnablePushMessagingHasPermission,
1292 switches::kEnableRendererMojoChannel, 1293 switches::kEnableRendererMojoChannel,
1293 switches::kEnableSeccompFilterSandbox, 1294 switches::kEnableSeccompFilterSandbox,
1294 switches::kEnableSkiaBenchmarking, 1295 switches::kEnableSkiaBenchmarking,
1295 switches::kEnableSlimmingPaint, 1296 switches::kEnableSlimmingPaint,
1296 switches::kEnableSmoothScrolling, 1297 switches::kEnableSmoothScrolling,
1297 switches::kEnableStatsTable, 1298 switches::kEnableStatsTable,
1298 switches::kEnableStrictSiteIsolation, 1299 switches::kEnableStrictSiteIsolation,
1299 switches::kEnableThreadedCompositing, 1300 switches::kEnableThreadedCompositing,
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after
2491 if (worker_ref_count_ == 0) 2492 if (worker_ref_count_ == 0)
2492 Cleanup(); 2493 Cleanup();
2493 } 2494 }
2494 2495
2495 void RenderProcessHostImpl::GetAudioOutputControllers( 2496 void RenderProcessHostImpl::GetAudioOutputControllers(
2496 const GetAudioOutputControllersCallback& callback) const { 2497 const GetAudioOutputControllersCallback& callback) const {
2497 audio_renderer_host()->GetOutputControllers(callback); 2498 audio_renderer_host()->GetOutputControllers(callback);
2498 } 2499 }
2499 2500
2500 } // namespace content 2501 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698