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

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

Issue 1308053006: CC Animations: Enable external animation host for blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Restore whitespace_file.txt Created 5 years 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 1303 matching lines...) Expand 10 before | Expand all | Expand 10 after
1314 switches::kAudioBufferSize, 1314 switches::kAudioBufferSize,
1315 switches::kBlinkPlatformLogChannels, 1315 switches::kBlinkPlatformLogChannels,
1316 switches::kBlinkSettings, 1316 switches::kBlinkSettings,
1317 switches::kDefaultTileWidth, 1317 switches::kDefaultTileWidth,
1318 switches::kDefaultTileHeight, 1318 switches::kDefaultTileHeight,
1319 switches::kDisable3DAPIs, 1319 switches::kDisable3DAPIs,
1320 switches::kDisableAcceleratedJpegDecoding, 1320 switches::kDisableAcceleratedJpegDecoding,
1321 switches::kDisableAcceleratedVideoDecode, 1321 switches::kDisableAcceleratedVideoDecode,
1322 switches::kDisableBlinkFeatures, 1322 switches::kDisableBlinkFeatures,
1323 switches::kDisableBreakpad, 1323 switches::kDisableBreakpad,
1324 switches::kDisableCompositorAnimationTimelines,
1324 switches::kDisablePreferCompositingToLCDText, 1325 switches::kDisablePreferCompositingToLCDText,
1325 switches::kDisableDatabases, 1326 switches::kDisableDatabases,
1326 switches::kDisableDelayAgnosticAec, 1327 switches::kDisableDelayAgnosticAec,
1327 switches::kDisableDirectNPAPIRequests, 1328 switches::kDisableDirectNPAPIRequests,
1328 switches::kDisableDisplayList2dCanvas, 1329 switches::kDisableDisplayList2dCanvas,
1329 switches::kDisableDistanceFieldText, 1330 switches::kDisableDistanceFieldText,
1330 switches::kDisableEncryptedMedia, 1331 switches::kDisableEncryptedMedia,
1331 switches::kDisableFileSystem, 1332 switches::kDisableFileSystem,
1332 switches::kDisableGestureRequirementForMediaPlayback, 1333 switches::kDisableGestureRequirementForMediaPlayback,
1333 switches::kDisableGpuCompositing, 1334 switches::kDisableGpuCompositing,
(...skipping 19 matching lines...) Expand all
1353 switches::kDisableSpeechAPI, 1354 switches::kDisableSpeechAPI,
1354 switches::kDisableSVG1DOM, 1355 switches::kDisableSVG1DOM,
1355 switches::kDisableThreadedCompositing, 1356 switches::kDisableThreadedCompositing,
1356 switches::kDisableThreadedScrolling, 1357 switches::kDisableThreadedScrolling,
1357 switches::kDisableTouchAdjustment, 1358 switches::kDisableTouchAdjustment,
1358 switches::kDisableTouchDragDrop, 1359 switches::kDisableTouchDragDrop,
1359 switches::kDisableV8IdleTasks, 1360 switches::kDisableV8IdleTasks,
1360 switches::kDomAutomationController, 1361 switches::kDomAutomationController,
1361 switches::kEnableBlinkFeatures, 1362 switches::kEnableBlinkFeatures,
1362 switches::kEnableBrowserSideNavigation, 1363 switches::kEnableBrowserSideNavigation,
1363 switches::kEnableCompositorAnimationTimelines,
1364 switches::kEnableCredentialManagerAPI, 1364 switches::kEnableCredentialManagerAPI,
1365 switches::kEnableDisplayList2dCanvas, 1365 switches::kEnableDisplayList2dCanvas,
1366 switches::kEnableDistanceFieldText, 1366 switches::kEnableDistanceFieldText,
1367 switches::kEnableExperimentalCanvasFeatures, 1367 switches::kEnableExperimentalCanvasFeatures,
1368 switches::kEnableExperimentalWebPlatformFeatures, 1368 switches::kEnableExperimentalWebPlatformFeatures,
1369 switches::kEnableHeapProfiling, 1369 switches::kEnableHeapProfiling,
1370 switches::kEnableGPUClientLogging, 1370 switches::kEnableGPUClientLogging,
1371 switches::kEnableGpuClientTracing, 1371 switches::kEnableGpuClientTracing,
1372 switches::kEnableGpuMemoryBufferVideoFrames, 1372 switches::kEnableGpuMemoryBufferVideoFrames,
1373 switches::kEnableGPUServiceLogging, 1373 switches::kEnableGPUServiceLogging,
(...skipping 1289 matching lines...) Expand 10 before | Expand all | Expand 10 after
2663 void RenderProcessHostImpl::GetAudioOutputControllers( 2663 void RenderProcessHostImpl::GetAudioOutputControllers(
2664 const GetAudioOutputControllersCallback& callback) const { 2664 const GetAudioOutputControllersCallback& callback) const {
2665 audio_renderer_host()->GetOutputControllers(callback); 2665 audio_renderer_host()->GetOutputControllers(callback);
2666 } 2666 }
2667 2667
2668 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2668 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2669 return bluetooth_dispatcher_host_.get(); 2669 return bluetooth_dispatcher_host_.get();
2670 } 2670 }
2671 2671
2672 } // namespace content 2672 } // 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