| Index: chrome/browser/profiles/profile_manager.h
|
| ===================================================================
|
| --- chrome/browser/profiles/profile_manager.h (revision 150342)
|
| +++ chrome/browser/profiles/profile_manager.h (working copy)
|
| @@ -24,10 +24,6 @@
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
|
|
| -#if defined(OS_WIN)
|
| -#include "chrome/browser/profiles/profile_shortcut_manager_win.h"
|
| -#endif
|
| -
|
| class NewProfileLauncher;
|
| class ProfileInfoCache;
|
|
|
| @@ -209,12 +205,6 @@
|
| virtual Profile* CreateProfileAsyncHelper(const FilePath& path,
|
| Delegate* delegate);
|
|
|
| -#if defined(OS_WIN)
|
| - // Creates a shortcut manager. Override this to return a different shortcut
|
| - // manager or NULL to avoid creating shortcuts.
|
| - virtual ProfileShortcutManagerWin* CreateShortcutManager();
|
| -#endif
|
| -
|
| private:
|
| friend class TestingProfileManager;
|
| FRIEND_TEST_ALL_PREFIXES(ProfileManagerBrowserTest, DeleteAllProfiles);
|
| @@ -260,12 +250,6 @@
|
| // Adds |profile| to the profile info cache if it hasn't been added yet.
|
| void AddProfileToCache(Profile* profile);
|
|
|
| -#if defined(OS_WIN)
|
| - // Creates a profile desktop shortcut for |profile| if we are in multi
|
| - // profile mode and the shortcut has not been created before.
|
| - void CreateDesktopShortcut(Profile* profile);
|
| -#endif
|
| -
|
| // Initializes user prefs of |profile|. This includes profile name and
|
| // avatar values
|
| void InitProfileUserPrefs(Profile* profile);
|
| @@ -308,11 +292,6 @@
|
| // if it has not been explicitly deleted.
|
| scoped_ptr<ProfileInfoCache> profile_info_cache_;
|
|
|
| -#if defined(OS_WIN)
|
| - // Manages the creation, deletion, and renaming of Windows shortcuts by
|
| - // observing the ProfileInfoCache.
|
| - scoped_ptr<ProfileShortcutManagerWin> profile_shortcut_manager_;
|
| -#endif
|
|
|
| #if !defined(OS_ANDROID)
|
| class BrowserListObserver : public chrome::BrowserListObserver {
|
|
|