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_EXTENSIONS_APP_SHORTCUT_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_APP_SHORTCUT_MANAGER_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_APP_SHORTCUT_MANAGER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_APP_SHORTCUT_MANAGER_H_ |
7 #pragma once | |
8 | 7 |
9 #include "chrome/browser/extensions/image_loading_tracker.h" | 8 #include "chrome/browser/extensions/image_loading_tracker.h" |
10 #include "chrome/browser/shell_integration.h" | 9 #include "chrome/browser/shell_integration.h" |
11 #include "chrome/common/extensions/extension.h" | 10 #include "chrome/common/extensions/extension.h" |
12 #include "content/public/browser/notification_observer.h" | 11 #include "content/public/browser/notification_observer.h" |
13 #include "content/public/browser/notification_registrar.h" | 12 #include "content/public/browser/notification_registrar.h" |
14 | 13 |
15 class Profile; | 14 class Profile; |
16 | 15 |
17 // This class manages the installation of shortcuts for platform apps. | 16 // This class manages the installation of shortcuts for platform apps. |
(...skipping 24 matching lines...) Expand all Loading... |
42 Profile* profile_; | 41 Profile* profile_; |
43 | 42 |
44 // Fields used when installing application shortcuts. | 43 // Fields used when installing application shortcuts. |
45 ShellIntegration::ShortcutInfo shortcut_info_; | 44 ShellIntegration::ShortcutInfo shortcut_info_; |
46 ImageLoadingTracker tracker_; | 45 ImageLoadingTracker tracker_; |
47 | 46 |
48 DISALLOW_COPY_AND_ASSIGN(AppShortcutManager); | 47 DISALLOW_COPY_AND_ASSIGN(AppShortcutManager); |
49 }; | 48 }; |
50 | 49 |
51 #endif // CHROME_BROWSER_EXTENSIONS_APP_SHORTCUT_MANAGER_H_ | 50 #endif // CHROME_BROWSER_EXTENSIONS_APP_SHORTCUT_MANAGER_H_ |
OLD | NEW |