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

Unified Diff: content/gpu/gpu_info_collector_android.cc

Issue 14944010: Make it possible to run WebGL conformance tests on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Retry upload. Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/gpu/gpu_info_collector.h ('k') | content/gpu/gpu_info_collector_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/gpu/gpu_info_collector_android.cc
diff --git a/content/gpu/gpu_info_collector_android.cc b/content/gpu/gpu_info_collector_android.cc
index f148608e11ef6b8d27d5f87b58bc2bc69c19e5ef..489e66d2ca8af514972b994143dabf6425b384ac 100644
--- a/content/gpu/gpu_info_collector_android.cc
+++ b/content/gpu/gpu_info_collector_android.cc
@@ -55,11 +55,11 @@ bool CollectContextGraphicsInfo(content::GPUInfo* gpu_info) {
return CollectGraphicsInfoGL(gpu_info);
}
-bool CollectGpuID(uint32* vendor_id, uint32* device_id) {
+GpuIDResult CollectGpuID(uint32* vendor_id, uint32* device_id) {
DCHECK(vendor_id && device_id);
*vendor_id = 0;
*device_id = 0;
- return false;
+ return kGpuIDNotSupported;
}
bool CollectBasicGraphicsInfo(content::GPUInfo* gpu_info) {
« no previous file with comments | « content/gpu/gpu_info_collector.h ('k') | content/gpu/gpu_info_collector_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698