diff options
Diffstat (limited to 'chrome/common/gpu_info.cc')
-rw-r--r-- | chrome/common/gpu_info.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/common/gpu_info.cc b/chrome/common/gpu_info.cc index 5a88e34..8b47973 100644 --- a/chrome/common/gpu_info.cc +++ b/chrome/common/gpu_info.cc @@ -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 @@ GPUInfo::GPUInfo() 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 @@ bool GPUInfo::can_lose_context() const { return can_lose_context_; } -void GPUInfo::SetProgress(Progress progress) { - progress_ = progress; +void GPUInfo::SetLevel(Level level) { + level_ = level; } void GPUInfo::SetInitializationTime( |