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

Side by Side Diff: content/browser/gpu/gpu_process_host.cc

Issue 2766343002: Revert of [Mojo Video Capture] Add test coverage for accelerated jpeg decoding (Closed)
Patch Set: Created 3 years, 9 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 | « no previous file | content/browser/renderer_host/media/video_capture_browsertest.cc » ('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 #include "content/browser/gpu/gpu_process_host.h" 5 #include "content/browser/gpu/gpu_process_host.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <list> 10 #include <list>
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 switches::kHeadless, 143 switches::kHeadless,
144 switches::kLoggingLevel, 144 switches::kLoggingLevel,
145 switches::kEnableLowEndDeviceMode, 145 switches::kEnableLowEndDeviceMode,
146 switches::kDisableLowEndDeviceMode, 146 switches::kDisableLowEndDeviceMode,
147 switches::kNoSandbox, 147 switches::kNoSandbox,
148 switches::kProfilerTiming, 148 switches::kProfilerTiming,
149 switches::kTestGLLib, 149 switches::kTestGLLib,
150 switches::kTraceConfigFile, 150 switches::kTraceConfigFile,
151 switches::kTraceStartup, 151 switches::kTraceStartup,
152 switches::kTraceToConsole, 152 switches::kTraceToConsole,
153 switches::kUseFakeJpegDecodeAccelerator,
154 switches::kUseGpuInTests, 153 switches::kUseGpuInTests,
155 switches::kV, 154 switches::kV,
156 switches::kVModule, 155 switches::kVModule,
157 #if defined(OS_MACOSX) 156 #if defined(OS_MACOSX)
158 switches::kDisableAVFoundationOverlays, 157 switches::kDisableAVFoundationOverlays,
159 switches::kDisableRemoteCoreAnimation, 158 switches::kDisableRemoteCoreAnimation,
160 switches::kEnableSandboxLogging, 159 switches::kEnableSandboxLogging,
161 switches::kShowMacOverlayBorders, 160 switches::kShowMacOverlayBorders,
162 #endif 161 #endif
163 #if defined(USE_OZONE) 162 #if defined(USE_OZONE)
(...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after
1212 GetShaderCacheFactorySingleton()->Get(client_id); 1211 GetShaderCacheFactorySingleton()->Get(client_id);
1213 if (!cache.get()) 1212 if (!cache.get())
1214 return; 1213 return;
1215 1214
1216 cache->set_shader_loaded_callback(base::Bind(&HostLoadedShader, host_id_)); 1215 cache->set_shader_loaded_callback(base::Bind(&HostLoadedShader, host_id_));
1217 1216
1218 client_id_to_shader_cache_[client_id] = cache; 1217 client_id_to_shader_cache_[client_id] = cache;
1219 } 1218 }
1220 1219
1221 } // namespace content 1220 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/media/video_capture_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698