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

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: change expect_eq to assert_eq 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 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after
1258 switches::kEnableLinkDisambiguationPopup, 1258 switches::kEnableLinkDisambiguationPopup,
1259 switches::kEnableLowResTiling, 1259 switches::kEnableLowResTiling,
1260 switches::kEnableInbandTextTracks, 1260 switches::kEnableInbandTextTracks,
1261 switches::kEnableLCDText, 1261 switches::kEnableLCDText,
1262 switches::kEnableLogging, 1262 switches::kEnableLogging,
1263 switches::kEnableMemoryBenchmarking, 1263 switches::kEnableMemoryBenchmarking,
1264 switches::kEnableNetworkInformation, 1264 switches::kEnableNetworkInformation,
1265 switches::kEnableOverlayFullscreenVideo, 1265 switches::kEnableOverlayFullscreenVideo,
1266 switches::kEnableOverlayScrollbar, 1266 switches::kEnableOverlayScrollbar,
1267 switches::kEnablePinch, 1267 switches::kEnablePinch,
1268 switches::kEnablePluginPlaceholderTesting,
1268 switches::kEnablePreciseMemoryInfo, 1269 switches::kEnablePreciseMemoryInfo,
1269 switches::kEnablePreferCompositingToLCDText, 1270 switches::kEnablePreferCompositingToLCDText,
1270 switches::kEnablePushMessagePayload, 1271 switches::kEnablePushMessagePayload,
1271 switches::kEnablePushMessagingHasPermission, 1272 switches::kEnablePushMessagingHasPermission,
1272 switches::kEnableRendererMojoChannel, 1273 switches::kEnableRendererMojoChannel,
1273 switches::kEnableSeccompFilterSandbox, 1274 switches::kEnableSeccompFilterSandbox,
1274 switches::kEnableSkiaBenchmarking, 1275 switches::kEnableSkiaBenchmarking,
1275 switches::kEnableSlimmingPaint, 1276 switches::kEnableSlimmingPaint,
1276 switches::kEnableSmoothScrolling, 1277 switches::kEnableSmoothScrolling,
1277 switches::kEnableStaleWhileRevalidate, 1278 switches::kEnableStaleWhileRevalidate,
(...skipping 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after
2454 if (worker_ref_count_ == 0) 2455 if (worker_ref_count_ == 0)
2455 Cleanup(); 2456 Cleanup();
2456 } 2457 }
2457 2458
2458 void RenderProcessHostImpl::GetAudioOutputControllers( 2459 void RenderProcessHostImpl::GetAudioOutputControllers(
2459 const GetAudioOutputControllersCallback& callback) const { 2460 const GetAudioOutputControllersCallback& callback) const {
2460 audio_renderer_host()->GetOutputControllers(callback); 2461 audio_renderer_host()->GetOutputControllers(callback);
2461 } 2462 }
2462 2463
2463 } // namespace content 2464 } // namespace content
OLDNEW
« no previous file with comments | « components/plugins/renderer/loadable_plugin_placeholder.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698