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

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

Issue 1083383005: Connect the new video rendering path to the compositor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@vra
Patch Set: Update LoginCustomFlags histogram. 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
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | media/base/media_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after
1269 switches::kEnableGpuClientTracing, 1269 switches::kEnableGpuClientTracing,
1270 switches::kEnableGPUServiceLogging, 1270 switches::kEnableGPUServiceLogging,
1271 switches::kEnableIconNtp, 1271 switches::kEnableIconNtp,
1272 switches::kEnableLinkDisambiguationPopup, 1272 switches::kEnableLinkDisambiguationPopup,
1273 switches::kEnableLowResTiling, 1273 switches::kEnableLowResTiling,
1274 switches::kEnableInbandTextTracks, 1274 switches::kEnableInbandTextTracks,
1275 switches::kEnableLCDText, 1275 switches::kEnableLCDText,
1276 switches::kEnableLogging, 1276 switches::kEnableLogging,
1277 switches::kEnableMemoryBenchmarking, 1277 switches::kEnableMemoryBenchmarking,
1278 switches::kEnableNetworkInformation, 1278 switches::kEnableNetworkInformation,
1279 switches::kEnableNewVideoRenderer,
1279 switches::kEnableOverlayFullscreenVideo, 1280 switches::kEnableOverlayFullscreenVideo,
1280 switches::kEnableOverlayScrollbar, 1281 switches::kEnableOverlayScrollbar,
1281 switches::kEnablePinch, 1282 switches::kEnablePinch,
1282 switches::kEnablePreciseMemoryInfo, 1283 switches::kEnablePreciseMemoryInfo,
1283 switches::kEnablePreferCompositingToLCDText, 1284 switches::kEnablePreferCompositingToLCDText,
1284 switches::kEnablePushMessagePayload, 1285 switches::kEnablePushMessagePayload,
1285 switches::kEnablePushMessagingHasPermission, 1286 switches::kEnablePushMessagingHasPermission,
1286 switches::kEnableRendererMojoChannel, 1287 switches::kEnableRendererMojoChannel,
1287 switches::kEnableSeccompFilterSandbox, 1288 switches::kEnableSeccompFilterSandbox,
1288 switches::kEnableSkiaBenchmarking, 1289 switches::kEnableSkiaBenchmarking,
(...skipping 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after
2485 if (worker_ref_count_ == 0) 2486 if (worker_ref_count_ == 0)
2486 Cleanup(); 2487 Cleanup();
2487 } 2488 }
2488 2489
2489 void RenderProcessHostImpl::GetAudioOutputControllers( 2490 void RenderProcessHostImpl::GetAudioOutputControllers(
2490 const GetAudioOutputControllersCallback& callback) const { 2491 const GetAudioOutputControllersCallback& callback) const {
2491 audio_renderer_host()->GetOutputControllers(callback); 2492 audio_renderer_host()->GetOutputControllers(callback);
2492 } 2493 }
2493 2494
2494 } // namespace content 2495 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | media/base/media_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698