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

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

Issue 1398713002: Revert of CC Animations: Enable external animation host for blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 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 1208 matching lines...) Expand 10 before | Expand all | Expand 10 after
1219 switches::kAudioBufferSize, 1219 switches::kAudioBufferSize,
1220 switches::kBlinkPlatformLogChannels, 1220 switches::kBlinkPlatformLogChannels,
1221 switches::kBlinkSettings, 1221 switches::kBlinkSettings,
1222 switches::kDefaultTileWidth, 1222 switches::kDefaultTileWidth,
1223 switches::kDefaultTileHeight, 1223 switches::kDefaultTileHeight,
1224 switches::kDisable3DAPIs, 1224 switches::kDisable3DAPIs,
1225 switches::kDisableAcceleratedJpegDecoding, 1225 switches::kDisableAcceleratedJpegDecoding,
1226 switches::kDisableAcceleratedVideoDecode, 1226 switches::kDisableAcceleratedVideoDecode,
1227 switches::kDisableBlinkFeatures, 1227 switches::kDisableBlinkFeatures,
1228 switches::kDisableBreakpad, 1228 switches::kDisableBreakpad,
1229 switches::kDisableCompositorAnimationTimelines,
1230 switches::kDisablePreferCompositingToLCDText, 1229 switches::kDisablePreferCompositingToLCDText,
1231 switches::kDisableDatabases, 1230 switches::kDisableDatabases,
1232 switches::kDisableDelayAgnosticAec, 1231 switches::kDisableDelayAgnosticAec,
1233 switches::kDisableDirectNPAPIRequests, 1232 switches::kDisableDirectNPAPIRequests,
1234 switches::kDisableDisplayList2dCanvas, 1233 switches::kDisableDisplayList2dCanvas,
1235 switches::kDisableDistanceFieldText, 1234 switches::kDisableDistanceFieldText,
1236 switches::kDisableEncryptedMedia, 1235 switches::kDisableEncryptedMedia,
1237 switches::kDisableFeatures, 1236 switches::kDisableFeatures,
1238 switches::kDisableFileSystem, 1237 switches::kDisableFileSystem,
1239 switches::kDisableGpuCompositing, 1238 switches::kDisableGpuCompositing,
(...skipping 18 matching lines...) Expand all
1258 switches::kDisableSpeechAPI, 1257 switches::kDisableSpeechAPI,
1259 switches::kDisableSVG1DOM, 1258 switches::kDisableSVG1DOM,
1260 switches::kDisableThreadedCompositing, 1259 switches::kDisableThreadedCompositing,
1261 switches::kDisableThreadedScrolling, 1260 switches::kDisableThreadedScrolling,
1262 switches::kDisableTouchAdjustment, 1261 switches::kDisableTouchAdjustment,
1263 switches::kDisableTouchDragDrop, 1262 switches::kDisableTouchDragDrop,
1264 switches::kDisableV8IdleTasks, 1263 switches::kDisableV8IdleTasks,
1265 switches::kDomAutomationController, 1264 switches::kDomAutomationController,
1266 switches::kEnableBlinkFeatures, 1265 switches::kEnableBlinkFeatures,
1267 switches::kEnableBrowserSideNavigation, 1266 switches::kEnableBrowserSideNavigation,
1267 switches::kEnableCompositorAnimationTimelines,
1268 switches::kEnableCredentialManagerAPI, 1268 switches::kEnableCredentialManagerAPI,
1269 switches::kEnableDisplayList2dCanvas, 1269 switches::kEnableDisplayList2dCanvas,
1270 switches::kEnableDistanceFieldText, 1270 switches::kEnableDistanceFieldText,
1271 switches::kEnableExperimentalCanvasFeatures, 1271 switches::kEnableExperimentalCanvasFeatures,
1272 switches::kEnableExperimentalWebPlatformFeatures, 1272 switches::kEnableExperimentalWebPlatformFeatures,
1273 switches::kEnableFeatures, 1273 switches::kEnableFeatures,
1274 switches::kEnableGPUClientLogging, 1274 switches::kEnableGPUClientLogging,
1275 switches::kEnableGpuClientTracing, 1275 switches::kEnableGpuClientTracing,
1276 switches::kEnableGpuMemoryBufferVideoFrames, 1276 switches::kEnableGpuMemoryBufferVideoFrames,
1277 switches::kEnableGPUServiceLogging, 1277 switches::kEnableGPUServiceLogging,
(...skipping 1251 matching lines...) Expand 10 before | Expand all | Expand 10 after
2529 void RenderProcessHostImpl::GetAudioOutputControllers( 2529 void RenderProcessHostImpl::GetAudioOutputControllers(
2530 const GetAudioOutputControllersCallback& callback) const { 2530 const GetAudioOutputControllersCallback& callback) const {
2531 audio_renderer_host()->GetOutputControllers(callback); 2531 audio_renderer_host()->GetOutputControllers(callback);
2532 } 2532 }
2533 2533
2534 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2534 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2535 return bluetooth_dispatcher_host_.get(); 2535 return bluetooth_dispatcher_host_.get();
2536 } 2536 }
2537 2537
2538 } // namespace content 2538 } // 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