| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_NOTIFICATIONS_DESKTOP_NOTIFICATION_SERVICE_H | 5 #ifndef CHROME_BROWSER_NOTIFICATIONS_DESKTOP_NOTIFICATION_SERVICE_H_ |
| 6 #define CHROME_BROWSER_NOTIFICATIONS_DESKTOP_NOTIFICATION_SERVICE_H | 6 #define CHROME_BROWSER_NOTIFICATIONS_DESKTOP_NOTIFICATION_SERVICE_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "chrome/browser/notifications/notification.h" | 11 #include "chrome/browser/notifications/notification.h" |
| 12 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
| 13 | 13 |
| 14 class NotificationUIManager; | 14 class NotificationUIManager; |
| 15 class NotificationsPrefsCache; | 15 class NotificationsPrefsCache; |
| 16 class PrefService; | 16 class PrefService; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 // to service synchronous IPCs. | 68 // to service synchronous IPCs. |
| 69 scoped_refptr<NotificationsPrefsCache> prefs_cache_; | 69 scoped_refptr<NotificationsPrefsCache> prefs_cache_; |
| 70 | 70 |
| 71 // Non-owned pointer to the notification manager which manages the | 71 // Non-owned pointer to the notification manager which manages the |
| 72 // UI for desktop toasts. | 72 // UI for desktop toasts. |
| 73 NotificationUIManager* ui_manager_; | 73 NotificationUIManager* ui_manager_; |
| 74 | 74 |
| 75 DISALLOW_COPY_AND_ASSIGN(DesktopNotificationService); | 75 DISALLOW_COPY_AND_ASSIGN(DesktopNotificationService); |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 #endif // #ifndef CHROME_BROWSER_NOTIFICATIONS_DESKTOP_NOTIFICATION_SERVICE_H | 78 #endif // CHROME_BROWSER_NOTIFICATIONS_DESKTOP_NOTIFICATION_SERVICE_H_ |
| OLD | NEW |