Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(265)

Unified Diff: gpu/config/gpu_util.h

Issue 196413016: Move CommandLine to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.cc ('k') | mojo/shell/child_process.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/config/gpu_util.h
diff --git a/gpu/config/gpu_util.h b/gpu/config/gpu_util.h
index c10cca6c77384f4fa1df7963e460ccb9ca647e79..e5735a0f77f60a77594d4a942f4005c78f42aa70 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
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.cc ('k') | mojo/shell/child_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698