| Index: chrome/browser/profiles/profile_shortcut_manager_win.cc
|
| diff --git a/chrome/browser/profiles/profile_shortcut_manager_win.cc b/chrome/browser/profiles/profile_shortcut_manager_win.cc
|
| index e0b6b86145a054966d1bced9289be201a4e88b6d..7327fab33a8f40bb2a153d7c6ca65a158c5f1156 100644
|
| --- a/chrome/browser/profiles/profile_shortcut_manager_win.cc
|
| +++ b/chrome/browser/profiles/profile_shortcut_manager_win.cc
|
| @@ -643,7 +643,7 @@ base::string16 CreateProfileShortcutFlags(const base::FilePath& profile_path) {
|
|
|
| // static
|
| bool ProfileShortcutManager::IsFeatureEnabled() {
|
| - CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| + base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| return command_line->HasSwitch(switches::kEnableProfileShortcutManager) ||
|
| (BrowserDistribution::GetDistribution()->CanCreateDesktopShortcuts() &&
|
| !command_line->HasSwitch(switches::kUserDataDir));
|
| @@ -701,7 +701,7 @@ void ProfileShortcutManagerWin::HasProfileShortcuts(
|
|
|
| void ProfileShortcutManagerWin::GetShortcutProperties(
|
| const base::FilePath& profile_path,
|
| - CommandLine* command_line,
|
| + base::CommandLine* command_line,
|
| base::string16* name,
|
| base::FilePath* icon_path) {
|
| base::FilePath chrome_exe;
|
|
|