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

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

Issue 285343003: Add 4k HW decode override flag and support larger bitstream buffers in V4L2VDA. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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 | Annotate | Revision Log
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 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after
1104 switches::kEnableViewportMeta, 1104 switches::kEnableViewportMeta,
1105 switches::kMainFrameResizesAreOrientationChanges, 1105 switches::kMainFrameResizesAreOrientationChanges,
1106 switches::kEnableVtune, 1106 switches::kEnableVtune,
1107 switches::kEnableWebAnimationsSVG, 1107 switches::kEnableWebAnimationsSVG,
1108 switches::kEnableWebGLDraftExtensions, 1108 switches::kEnableWebGLDraftExtensions,
1109 switches::kEnableWebMIDI, 1109 switches::kEnableWebMIDI,
1110 switches::kEnableZeroCopy, 1110 switches::kEnableZeroCopy,
1111 switches::kForceCompositingMode, 1111 switches::kForceCompositingMode,
1112 switches::kForceDeviceScaleFactor, 1112 switches::kForceDeviceScaleFactor,
1113 switches::kFullMemoryCrashReport, 1113 switches::kFullMemoryCrashReport,
1114 switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode,
1114 switches::kJavaScriptFlags, 1115 switches::kJavaScriptFlags,
1115 switches::kLoggingLevel, 1116 switches::kLoggingLevel,
1116 switches::kMaxUntiledLayerWidth, 1117 switches::kMaxUntiledLayerWidth,
1117 switches::kMaxUntiledLayerHeight, 1118 switches::kMaxUntiledLayerHeight,
1118 switches::kMemoryMetrics, 1119 switches::kMemoryMetrics,
1119 switches::kNoReferrers, 1120 switches::kNoReferrers,
1120 switches::kNoSandbox, 1121 switches::kNoSandbox,
1121 switches::kNumRasterThreads, 1122 switches::kNumRasterThreads,
1122 switches::kPpapiInProcess, 1123 switches::kPpapiInProcess,
1123 switches::kProfilerTiming, 1124 switches::kProfilerTiming,
(...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 mojo::ScopedMessagePipeHandle handle) { 2076 mojo::ScopedMessagePipeHandle handle) {
2076 mojo_activation_required_ = true; 2077 mojo_activation_required_ = true;
2077 MaybeActivateMojo(); 2078 MaybeActivateMojo();
2078 2079
2079 mojo::AllocationScope scope; 2080 mojo::AllocationScope scope;
2080 mojo_application_host_->shell_client()->AcceptConnection(service_name, 2081 mojo_application_host_->shell_client()->AcceptConnection(service_name,
2081 handle.Pass()); 2082 handle.Pass());
2082 } 2083 }
2083 2084
2084 } // namespace content 2085 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_process_host.cc ('k') | content/common/gpu/media/v4l2_video_decode_accelerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698