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

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

Issue 1132873002: Plugin Power Saver: Fix poster-click flaky test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@0275-plugin-power-saver-preserve-js-access-for-throttled-plugins
Patch Set: Created 5 years, 7 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 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after
1260 switches::kEnableLinkDisambiguationPopup, 1260 switches::kEnableLinkDisambiguationPopup,
1261 switches::kEnableLowResTiling, 1261 switches::kEnableLowResTiling,
1262 switches::kEnableInbandTextTracks, 1262 switches::kEnableInbandTextTracks,
1263 switches::kEnableLCDText, 1263 switches::kEnableLCDText,
1264 switches::kEnableLogging, 1264 switches::kEnableLogging,
1265 switches::kEnableMemoryBenchmarking, 1265 switches::kEnableMemoryBenchmarking,
1266 switches::kEnableNetworkInformation, 1266 switches::kEnableNetworkInformation,
1267 switches::kEnableOverlayFullscreenVideo, 1267 switches::kEnableOverlayFullscreenVideo,
1268 switches::kEnableOverlayScrollbar, 1268 switches::kEnableOverlayScrollbar,
1269 switches::kEnablePinch, 1269 switches::kEnablePinch,
1270 switches::kEnablePluginPlaceholderTesting,
1270 switches::kEnablePreciseMemoryInfo, 1271 switches::kEnablePreciseMemoryInfo,
1271 switches::kEnablePreferCompositingToLCDText, 1272 switches::kEnablePreferCompositingToLCDText,
1272 switches::kEnablePushMessagePayload, 1273 switches::kEnablePushMessagePayload,
1273 switches::kEnablePushMessagingHasPermission, 1274 switches::kEnablePushMessagingHasPermission,
1274 switches::kEnableRendererMojoChannel, 1275 switches::kEnableRendererMojoChannel,
1275 switches::kEnableSeccompFilterSandbox, 1276 switches::kEnableSeccompFilterSandbox,
1276 switches::kEnableSkiaBenchmarking, 1277 switches::kEnableSkiaBenchmarking,
1277 switches::kEnableSlimmingPaint, 1278 switches::kEnableSlimmingPaint,
1278 switches::kEnableSmoothScrolling, 1279 switches::kEnableSmoothScrolling,
1279 switches::kEnableStaleWhileRevalidate, 1280 switches::kEnableStaleWhileRevalidate,
(...skipping 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after
2456 if (worker_ref_count_ == 0) 2457 if (worker_ref_count_ == 0)
2457 Cleanup(); 2458 Cleanup();
2458 } 2459 }
2459 2460
2460 void RenderProcessHostImpl::GetAudioOutputControllers( 2461 void RenderProcessHostImpl::GetAudioOutputControllers(
2461 const GetAudioOutputControllersCallback& callback) const { 2462 const GetAudioOutputControllersCallback& callback) const {
2462 audio_renderer_host()->GetOutputControllers(callback); 2463 audio_renderer_host()->GetOutputControllers(callback);
2463 } 2464 }
2464 2465
2465 } // namespace content 2466 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698