diff options
Diffstat (limited to 'gpu/config/gpu_util.h')
-rw-r--r-- | gpu/config/gpu_util.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gpu/config/gpu_util.h b/gpu/config/gpu_util.h index c10cca6..e5735a0 100644 --- a/gpu/config/gpu_util.h +++ b/gpu/config/gpu_util.h @@ -12,7 +12,9 @@ #include "build/build_config.h" #include "gpu/gpu_export.h" +namespace base { class CommandLine; +} namespace gpu { @@ -24,12 +26,12 @@ GPU_EXPORT void MergeFeatureSets( // Collect basic GPUInfo, compute the driver bug workarounds for the current // system, and append the |command_line|. -GPU_EXPORT void ApplyGpuDriverBugWorkarounds(CommandLine* command_line); +GPU_EXPORT void ApplyGpuDriverBugWorkarounds(base::CommandLine* command_line); // With provided GPUInfo, compute the driver bug workarounds for the current // system, and append the |command_line|. GPU_EXPORT void ApplyGpuDriverBugWorkarounds( - const GPUInfo& gpu_inco, CommandLine* command_line); + const GPUInfo& gpu_inco, base::CommandLine* command_line); // |str| is in the format of "feature1,feature2,...,featureN". GPU_EXPORT void StringToFeatureSet( @@ -37,7 +39,7 @@ GPU_EXPORT void StringToFeatureSet( // Get the set of workarounds from switches provided in |command_line| GPU_EXPORT std::set<int> WorkaroundsFromCommandLine( - CommandLine* command_line); + base::CommandLine* command_line); } // namespace gpu |