| Index: gpu/command_buffer/service/feature_info.h
|
| diff --git a/gpu/command_buffer/service/feature_info.h b/gpu/command_buffer/service/feature_info.h
|
| index 9877ef6aa546e367f77f04ce3243e90a95b09798..039b9262791dcf65def7c7dc77f29af0038cb1a5 100644
|
| --- a/gpu/command_buffer/service/feature_info.h
|
| +++ b/gpu/command_buffer/service/feature_info.h
|
| @@ -15,7 +15,9 @@
|
| #include "gpu/config/gpu_driver_bug_workaround_type.h"
|
| #include "gpu/gpu_export.h"
|
|
|
| +namespace base {
|
| class CommandLine;
|
| +}
|
|
|
| namespace gpu {
|
| namespace gles2 {
|
| @@ -83,7 +85,7 @@ class GPU_EXPORT FeatureInfo : public base::RefCounted<FeatureInfo> {
|
| FeatureInfo();
|
|
|
| // Constructor with workarounds taken from |command_line|
|
| - FeatureInfo(const CommandLine& command_line);
|
| + FeatureInfo(const base::CommandLine& command_line);
|
|
|
| // Initializes the feature information. Needs a current GL context.
|
| bool Initialize();
|
| @@ -119,7 +121,7 @@ class GPU_EXPORT FeatureInfo : public base::RefCounted<FeatureInfo> {
|
| ~FeatureInfo();
|
|
|
| void AddExtensionString(const std::string& str);
|
| - void InitializeBasicState(const CommandLine& command_line);
|
| + void InitializeBasicState(const base::CommandLine& command_line);
|
| void InitializeFeatures();
|
|
|
| Validators validators_;
|
|
|