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

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

Issue 1016033006: Enable BeginFrame scheduling on aura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address dana's comment 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 1236 matching lines...) Expand 10 before | Expand all | Expand 10 after
1247 switches::kDisableSeccompFilterSandbox, 1247 switches::kDisableSeccompFilterSandbox,
1248 switches::kDisableSharedWorkers, 1248 switches::kDisableSharedWorkers,
1249 switches::kDisableSVG1DOM, 1249 switches::kDisableSVG1DOM,
1250 switches::kDisableThreadedCompositing, 1250 switches::kDisableThreadedCompositing,
1251 switches::kDisableThreadedScrolling, 1251 switches::kDisableThreadedScrolling,
1252 switches::kDisableTouchAdjustment, 1252 switches::kDisableTouchAdjustment,
1253 switches::kDisableTouchDragDrop, 1253 switches::kDisableTouchDragDrop,
1254 switches::kDisableTouchEditing, 1254 switches::kDisableTouchEditing,
1255 switches::kDisableV8IdleTasks, 1255 switches::kDisableV8IdleTasks,
1256 switches::kDomAutomationController, 1256 switches::kDomAutomationController,
1257 switches::kEnableBeginFrameScheduling,
1258 switches::kEnableBleedingEdgeRenderingFastPaths, 1257 switches::kEnableBleedingEdgeRenderingFastPaths,
1259 switches::kEnableBlinkFeatures, 1258 switches::kEnableBlinkFeatures,
1260 switches::kEnableBrowserSideNavigation, 1259 switches::kEnableBrowserSideNavigation,
1261 switches::kEnablePreferCompositingToLCDText, 1260 switches::kEnablePreferCompositingToLCDText,
1262 switches::kEnableCredentialManagerAPI, 1261 switches::kEnableCredentialManagerAPI,
1263 switches::kEnableDeferredImageDecoding, 1262 switches::kEnableDeferredImageDecoding,
1264 switches::kEnableDelayAgnosticAec, 1263 switches::kEnableDelayAgnosticAec,
1265 switches::kEnableDisplayList2dCanvas, 1264 switches::kEnableDisplayList2dCanvas,
1266 switches::kEnableDistanceFieldText, 1265 switches::kEnableDistanceFieldText,
1267 switches::kEnableExperimentalCanvasFeatures, 1266 switches::kEnableExperimentalCanvasFeatures,
(...skipping 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after
2474 if (worker_ref_count_ == 0) 2473 if (worker_ref_count_ == 0)
2475 Cleanup(); 2474 Cleanup();
2476 } 2475 }
2477 2476
2478 void RenderProcessHostImpl::GetAudioOutputControllers( 2477 void RenderProcessHostImpl::GetAudioOutputControllers(
2479 const GetAudioOutputControllersCallback& callback) const { 2478 const GetAudioOutputControllersCallback& callback) const {
2480 audio_renderer_host()->GetOutputControllers(callback); 2479 audio_renderer_host()->GetOutputControllers(callback);
2481 } 2480 }
2482 2481
2483 } // namespace content 2482 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698