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

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

Issue 2772963002: Reland [Mojo Video Capture] Add test coverage for accelerated jpeg decoding (Closed)
Patch Set: Rebase to March 30 Created 3 years, 8 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 switches::kHeadless, 149 switches::kHeadless,
150 switches::kLoggingLevel, 150 switches::kLoggingLevel,
151 switches::kEnableLowEndDeviceMode, 151 switches::kEnableLowEndDeviceMode,
152 switches::kDisableLowEndDeviceMode, 152 switches::kDisableLowEndDeviceMode,
153 switches::kNoSandbox, 153 switches::kNoSandbox,
154 switches::kProfilerTiming, 154 switches::kProfilerTiming,
155 switches::kTestGLLib, 155 switches::kTestGLLib,
156 switches::kTraceConfigFile, 156 switches::kTraceConfigFile,
157 switches::kTraceStartup, 157 switches::kTraceStartup,
158 switches::kTraceToConsole, 158 switches::kTraceToConsole,
159 switches::kUseFakeJpegDecodeAccelerator,
159 switches::kUseGpuInTests, 160 switches::kUseGpuInTests,
160 switches::kV, 161 switches::kV,
161 switches::kVModule, 162 switches::kVModule,
162 #if defined(OS_MACOSX) 163 #if defined(OS_MACOSX)
163 switches::kDisableAVFoundationOverlays, 164 switches::kDisableAVFoundationOverlays,
164 switches::kDisableRemoteCoreAnimation, 165 switches::kDisableRemoteCoreAnimation,
165 switches::kEnableSandboxLogging, 166 switches::kEnableSandboxLogging,
166 switches::kShowMacOverlayBorders, 167 switches::kShowMacOverlayBorders,
167 #endif 168 #endif
168 #if defined(USE_OZONE) 169 #if defined(USE_OZONE)
(...skipping 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after
1206 GetShaderCacheFactorySingleton()->Get(client_id); 1207 GetShaderCacheFactorySingleton()->Get(client_id);
1207 if (!cache.get()) 1208 if (!cache.get())
1208 return; 1209 return;
1209 1210
1210 cache->set_shader_loaded_callback(base::Bind(&HostLoadedShader, host_id_)); 1211 cache->set_shader_loaded_callback(base::Bind(&HostLoadedShader, host_id_));
1211 1212
1212 client_id_to_shader_cache_[client_id] = cache; 1213 client_id_to_shader_cache_[client_id] = cache;
1213 } 1214 }
1214 1215
1215 } // namespace content 1216 } // 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