Index: chrome/common/gpu_info.cc |
=================================================================== |
--- chrome/common/gpu_info.cc (revision 72707) |
+++ chrome/common/gpu_info.cc (working copy) |
@@ -5,7 +5,7 @@ |
#include "chrome/common/gpu_info.h" |
GPUInfo::GPUInfo() |
- : progress_(kUninitialized), |
+ : level_(kUninitialized), |
vendor_id_(0), |
device_id_(0), |
driver_vendor_(""), |
@@ -20,8 +20,8 @@ |
can_lose_context_(false) { |
} |
-GPUInfo::Progress GPUInfo::progress() const { |
- return progress_; |
+GPUInfo::Level GPUInfo::level() const { |
+ return level_; |
} |
base::TimeDelta GPUInfo::initialization_time() const { |
@@ -76,8 +76,8 @@ |
return can_lose_context_; |
} |
-void GPUInfo::SetProgress(Progress progress) { |
- progress_ = progress; |
+void GPUInfo::SetLevel(Level level) { |
+ level_ = level; |
} |
void GPUInfo::SetInitializationTime( |