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

Unified Diff: components/wallpaper/wallpaper_manager_base.cc

Issue 818103002: 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: components/wallpaper/wallpaper_manager_base.cc
diff --git a/components/wallpaper/wallpaper_manager_base.cc b/components/wallpaper/wallpaper_manager_base.cc
index 3aca779e88e28918fe814ceca991d19dc17aa0b7..bad455a5ed6e948736d22ddfd9287672b27a69fa 100644
--- a/components/wallpaper/wallpaper_manager_base.cc
+++ b/components/wallpaper/wallpaper_manager_base.cc
@@ -759,10 +759,10 @@ void WallpaperManagerBase::SetCommandLineForTesting(
SetDefaultWallpaperPathsFromCommandLine(command_line);
}
-CommandLine* WallpaperManagerBase::GetCommandLine() {
- CommandLine* command_line = command_line_for_testing_
- ? command_line_for_testing_
- : CommandLine::ForCurrentProcess();
+base::CommandLine* WallpaperManagerBase::GetCommandLine() {
+ base::CommandLine* command_line =
+ command_line_for_testing_ ? command_line_for_testing_
+ : base::CommandLine::ForCurrentProcess();
return command_line;
}

Powered by Google App Engine
This is Rietveld 408576698