| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_WIN_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_WIN_H_ |
| 6 #define CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_WIN_H_ | 6 #define CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_WIN_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/macros.h" |
| 9 #include "chrome/browser/profiles/profile_shortcut_manager.h" | 10 #include "chrome/browser/profiles/profile_shortcut_manager.h" |
| 10 #include "content/public/browser/notification_observer.h" | 11 #include "content/public/browser/notification_observer.h" |
| 11 #include "content/public/browser/notification_registrar.h" | 12 #include "content/public/browser/notification_registrar.h" |
| 12 | 13 |
| 13 class BrowserDistribution; | 14 class BrowserDistribution; |
| 14 | 15 |
| 15 // Internal free-standing functions that are exported here for testing. | 16 // Internal free-standing functions that are exported here for testing. |
| 16 namespace profiles { | 17 namespace profiles { |
| 17 namespace internal { | 18 namespace internal { |
| 18 | 19 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 NonProfileShortcutAction action); | 91 NonProfileShortcutAction action); |
| 91 | 92 |
| 92 ProfileManager* profile_manager_; | 93 ProfileManager* profile_manager_; |
| 93 | 94 |
| 94 content::NotificationRegistrar registrar_; | 95 content::NotificationRegistrar registrar_; |
| 95 | 96 |
| 96 DISALLOW_COPY_AND_ASSIGN(ProfileShortcutManagerWin); | 97 DISALLOW_COPY_AND_ASSIGN(ProfileShortcutManagerWin); |
| 97 }; | 98 }; |
| 98 | 99 |
| 99 #endif // CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_WIN_H_ | 100 #endif // CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_WIN_H_ |
| OLD | NEW |