| Index: chrome/browser/profile_resetter/profile_resetter.cc
|
| diff --git a/chrome/browser/profile_resetter/profile_resetter.cc b/chrome/browser/profile_resetter/profile_resetter.cc
|
| index 7cefe5842338e0f8b4f87c0fed5fc8fa5e54b22e..d3e4360baf4398268c9f92efacd6aeddda1a95c9 100644
|
| --- a/chrome/browser/profile_resetter/profile_resetter.cc
|
| +++ b/chrome/browser/profile_resetter/profile_resetter.cc
|
| @@ -53,8 +53,7 @@ void ResetShortcutsOnFileThread() {
|
| base::FilePath chrome_exe;
|
| if (!PathService::Get(base::FILE_EXE, &chrome_exe))
|
| return;
|
| - BrowserDistribution* dist = BrowserDistribution::GetSpecificDistribution(
|
| - BrowserDistribution::CHROME_BROWSER);
|
| + BrowserDistribution* dist = BrowserDistribution::GetDistribution();
|
| for (int location = ShellUtil::SHORTCUT_LOCATION_FIRST;
|
| location < ShellUtil::NUM_SHORTCUT_LOCATIONS; ++location) {
|
| ShellUtil::ShortcutListMaybeRemoveUnknownArgs(
|
| @@ -347,8 +346,7 @@ std::vector<ShortcutCommand> GetChromeLaunchShortcuts(
|
| base::FilePath chrome_exe;
|
| if (!PathService::Get(base::FILE_EXE, &chrome_exe))
|
| return std::vector<ShortcutCommand>();
|
| - BrowserDistribution* dist = BrowserDistribution::GetSpecificDistribution(
|
| - BrowserDistribution::CHROME_BROWSER);
|
| + BrowserDistribution* dist = BrowserDistribution::GetDistribution();
|
| std::vector<ShortcutCommand> shortcuts;
|
| for (int location = ShellUtil::SHORTCUT_LOCATION_FIRST;
|
| location < ShellUtil::NUM_SHORTCUT_LOCATIONS; ++location) {
|
|
|