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

Unified Diff: content/shell/app/blink_test_platform_support_mac.mm

Issue 803813003: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: content/shell/app/blink_test_platform_support_mac.mm
diff --git a/content/shell/app/blink_test_platform_support_mac.mm b/content/shell/app/blink_test_platform_support_mac.mm
index 820d09564d5c526aa313c57c7181d1c0f1942d8e..34e2694b76fded1ad1e1cf7761f07fa30911e0fd 100644
--- a/content/shell/app/blink_test_platform_support_mac.mm
+++ b/content/shell/app/blink_test_platform_support_mac.mm
@@ -87,7 +87,7 @@ bool BlinkTestPlatformInitialize() {
base::FilePath plugins_dir;
PathService::Get(base::DIR_EXE, &plugins_dir);
plugins_dir = plugins_dir.AppendASCII("../../../plugins");
- CommandLine& command_line = *CommandLine::ForCurrentProcess();
+ base::CommandLine& command_line = *base::CommandLine::ForCurrentProcess();
command_line.AppendSwitchPath(switches::kExtraPluginDir, plugins_dir);
return true;

Powered by Google App Engine
This is Rietveld 408576698