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

Unified Diff: chrome/browser/ui/views/frame/browser_window_property_manager_win.cc

Issue 816403003: 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
Index: chrome/browser/ui/views/frame/browser_window_property_manager_win.cc
diff --git a/chrome/browser/ui/views/frame/browser_window_property_manager_win.cc b/chrome/browser/ui/views/frame/browser_window_property_manager_win.cc
index 166218be80b6855820e300d9793fed010aa91fa7..59996a15d9702f6a49d76513f141158dce55e7e4 100644
--- a/chrome/browser/ui/views/frame/browser_window_property_manager_win.cc
+++ b/chrome/browser/ui/views/frame/browser_window_property_manager_win.cc
@@ -80,7 +80,7 @@ void BrowserWindowPropertyManager::UpdateWindowProperties(HWND hwnd) {
const base::FilePath& profile_path = profile->GetPath();
// Set relaunch details to use profile.
- CommandLine command_line(CommandLine::NO_PROGRAM);
+ base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
base::FilePath icon_path;
shortcut_manager->GetShortcutProperties(profile_path, &command_line,
&pinned_name, &icon_path);

Powered by Google App Engine
This is Rietveld 408576698