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

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

Issue 1040813002: Revert of Enable BeginFrame scheduling on aura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after
1254 switches::kDisableSeccompFilterSandbox, 1254 switches::kDisableSeccompFilterSandbox,
1255 switches::kDisableSharedWorkers, 1255 switches::kDisableSharedWorkers,
1256 switches::kDisableSVG1DOM, 1256 switches::kDisableSVG1DOM,
1257 switches::kDisableThreadedCompositing, 1257 switches::kDisableThreadedCompositing,
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::kEnableBleedingEdgeRenderingFastPaths, 1265 switches::kEnableBleedingEdgeRenderingFastPaths,
1265 switches::kEnableBlinkFeatures, 1266 switches::kEnableBlinkFeatures,
1266 switches::kEnableBrowserSideNavigation, 1267 switches::kEnableBrowserSideNavigation,
1267 switches::kEnablePreferCompositingToLCDText, 1268 switches::kEnablePreferCompositingToLCDText,
1268 switches::kEnableCredentialManagerAPI, 1269 switches::kEnableCredentialManagerAPI,
1269 switches::kEnableDeferredImageDecoding, 1270 switches::kEnableDeferredImageDecoding,
1270 switches::kEnableDelayAgnosticAec, 1271 switches::kEnableDelayAgnosticAec,
1271 switches::kEnableDisplayList2dCanvas, 1272 switches::kEnableDisplayList2dCanvas,
1272 switches::kEnableDistanceFieldText, 1273 switches::kEnableDistanceFieldText,
1273 switches::kEnableExperimentalCanvasFeatures, 1274 switches::kEnableExperimentalCanvasFeatures,
(...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after
2488 if (worker_ref_count_ == 0) 2489 if (worker_ref_count_ == 0)
2489 Cleanup(); 2490 Cleanup();
2490 } 2491 }
2491 2492
2492 void RenderProcessHostImpl::GetAudioOutputControllers( 2493 void RenderProcessHostImpl::GetAudioOutputControllers(
2493 const GetAudioOutputControllersCallback& callback) const { 2494 const GetAudioOutputControllersCallback& callback) const {
2494 audio_renderer_host()->GetOutputControllers(callback); 2495 audio_renderer_host()->GetOutputControllers(callback);
2495 } 2496 }
2496 2497
2497 } // namespace content 2498 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698