Index: tools/perf/clear_system_cache/clear_system_cache_main.cc |
diff --git a/tools/perf/clear_system_cache/clear_system_cache_main.cc b/tools/perf/clear_system_cache/clear_system_cache_main.cc |
index e5f08a15f45f2b42724f8d7c16eb7a8a2e3f5fc7..7b26055c90250c08e53d4e607b7783c97f5f4e96 100644 |
--- a/tools/perf/clear_system_cache/clear_system_cache_main.cc |
+++ b/tools/perf/clear_system_cache/clear_system_cache_main.cc |
@@ -22,10 +22,11 @@ void ClearCacheForFile(const base::FilePath& path) { |
} |
int main(int argc, const char* argv[]) { |
- CommandLine::Init(argc, argv); |
- const CommandLine& parsed_command_line = *CommandLine::ForCurrentProcess(); |
+ base::CommandLine::Init(argc, argv); |
+ const base::CommandLine& parsed_command_line = |
+ *base::CommandLine::ForCurrentProcess(); |
bool should_recurse = parsed_command_line.HasSwitch("recurse"); |
- const CommandLine::StringVector& args = parsed_command_line.GetArgs(); |
+ const base::CommandLine::StringVector& args = parsed_command_line.GetArgs(); |
if (args.size() < 1) { |
printf("USAGE: %s [--recurse] <files or directories>\n", argv[0]); |