Index: gpu/config/gpu_util.cc |
diff --git a/gpu/config/gpu_util.cc b/gpu/config/gpu_util.cc |
index 4605981cfb91d3d8ed0678fd11db68bf18829d99..0fb8a7f186321f6e8c291ba1cbc0f158667deda9 100644 |
--- a/gpu/config/gpu_util.cc |
+++ b/gpu/config/gpu_util.cc |
@@ -53,15 +53,15 @@ void MergeFeatureSets(std::set<int>* dst, const std::set<int>& src) { |
dst->insert(src.begin(), src.end()); |
} |
-void ApplyGpuDriverBugWorkarounds(CommandLine* command_line) { |
+void ApplyGpuDriverBugWorkarounds(base::CommandLine* command_line) { |
GPUInfo gpu_info; |
CollectBasicGraphicsInfo(&gpu_info); |
ApplyGpuDriverBugWorkarounds(gpu_info, command_line); |
} |
-void ApplyGpuDriverBugWorkarounds( |
- const GPUInfo& gpu_info, CommandLine* command_line) { |
+void ApplyGpuDriverBugWorkarounds(const GPUInfo& gpu_info, |
+ base::CommandLine* command_line) { |
scoped_ptr<GpuDriverBugList> list(GpuDriverBugList::Create()); |
list->LoadList(kGpuDriverBugListJson, |
GpuControlList::kCurrentOsOnly); |