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

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

Issue 1097913002: Remove kIgnoreResolutionLimitsForAcceleratedVideoDecode flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 | « content/browser/gpu/gpu_process_host.cc ('k') | content/common/gpu/media/generic_v4l2_device.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 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after
1284 switches::kEnableUnsafeES3APIs, 1284 switches::kEnableUnsafeES3APIs,
1285 switches::kEnableViewport, 1285 switches::kEnableViewport,
1286 switches::kEnableViewportMeta, 1286 switches::kEnableViewportMeta,
1287 switches::kEnableVtune, 1287 switches::kEnableVtune,
1288 switches::kEnableWebGLDraftExtensions, 1288 switches::kEnableWebGLDraftExtensions,
1289 switches::kEnableWebGLImageChromium, 1289 switches::kEnableWebGLImageChromium,
1290 switches::kExplicitlyAllowedPorts, 1290 switches::kExplicitlyAllowedPorts,
1291 switches::kForceDeviceScaleFactor, 1291 switches::kForceDeviceScaleFactor,
1292 switches::kForceDisplayList2dCanvas, 1292 switches::kForceDisplayList2dCanvas,
1293 switches::kFullMemoryCrashReport, 1293 switches::kFullMemoryCrashReport,
1294 switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode,
1295 switches::kIPCConnectionTimeout, 1294 switches::kIPCConnectionTimeout,
1296 switches::kJavaScriptFlags, 1295 switches::kJavaScriptFlags,
1297 switches::kLoggingLevel, 1296 switches::kLoggingLevel,
1298 switches::kMainFrameResizesAreOrientationChanges, 1297 switches::kMainFrameResizesAreOrientationChanges,
1299 switches::kMaxUntiledLayerWidth, 1298 switches::kMaxUntiledLayerWidth,
1300 switches::kMaxUntiledLayerHeight, 1299 switches::kMaxUntiledLayerHeight,
1301 switches::kMemoryMetrics, 1300 switches::kMemoryMetrics,
1302 switches::kNoReferrers, 1301 switches::kNoReferrers,
1303 switches::kNoSandbox, 1302 switches::kNoSandbox,
1304 switches::kPpapiInProcess, 1303 switches::kPpapiInProcess,
(...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after
2455 if (worker_ref_count_ == 0) 2454 if (worker_ref_count_ == 0)
2456 Cleanup(); 2455 Cleanup();
2457 } 2456 }
2458 2457
2459 void RenderProcessHostImpl::GetAudioOutputControllers( 2458 void RenderProcessHostImpl::GetAudioOutputControllers(
2460 const GetAudioOutputControllersCallback& callback) const { 2459 const GetAudioOutputControllersCallback& callback) const {
2461 audio_renderer_host()->GetOutputControllers(callback); 2460 audio_renderer_host()->GetOutputControllers(callback);
2462 } 2461 }
2463 2462
2464 } // namespace content 2463 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_process_host.cc ('k') | content/common/gpu/media/generic_v4l2_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698