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

Unified Diff: win8/metro_driver/chrome_url_launch_handler.cc

Issue 819223002: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years 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 | « win8/delegate_execute/delegate_execute_util_unittest.cc ('k') | win8/metro_driver/metro_driver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win8/metro_driver/chrome_url_launch_handler.cc
diff --git a/win8/metro_driver/chrome_url_launch_handler.cc b/win8/metro_driver/chrome_url_launch_handler.cc
index 7c99b13f91a348815e18d15c7177e80f109e8177..f37706c3735b807c24fe386001f82f2575291cc6 100644
--- a/win8/metro_driver/chrome_url_launch_handler.cc
+++ b/win8/metro_driver/chrome_url_launch_handler.cc
@@ -108,8 +108,9 @@ base::string16 ChromeUrlLaunchHandler::GetUrlFromLaunchArgs(
}
base::string16 dummy_command_line(L"dummy.exe ");
dummy_command_line.append(launch_args);
- CommandLine command_line = CommandLine::FromString(dummy_command_line);
- CommandLine::StringVector args = command_line.GetArgs();
+ base::CommandLine command_line =
+ base::CommandLine::FromString(dummy_command_line);
+ base::CommandLine::StringVector args = command_line.GetArgs();
if (args.size() > 0)
return args[0];
« no previous file with comments | « win8/delegate_execute/delegate_execute_util_unittest.cc ('k') | win8/metro_driver/metro_driver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698