| 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_NOTIFICATIONS_BALLOON_NOTIFICATION_UI_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_NOTIFICATIONS_BALLOON_NOTIFICATION_UI_MANAGER_H_ |
| 6 #define CHROME_BROWSER_NOTIFICATIONS_BALLOON_NOTIFICATION_UI_MANAGER_H_ | 6 #define CHROME_BROWSER_NOTIFICATIONS_BALLOON_NOTIFICATION_UI_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/prefs/public/pref_member.h" | 11 #include "base/prefs/pref_member.h" |
| 12 #include "chrome/browser/notifications/balloon.h" | 12 #include "chrome/browser/notifications/balloon.h" |
| 13 #include "chrome/browser/notifications/balloon_collection.h" | 13 #include "chrome/browser/notifications/balloon_collection.h" |
| 14 #include "chrome/browser/notifications/notification_prefs_manager.h" | 14 #include "chrome/browser/notifications/notification_prefs_manager.h" |
| 15 #include "chrome/browser/notifications/notification_ui_manager.h" | 15 #include "chrome/browser/notifications/notification_ui_manager.h" |
| 16 #include "chrome/browser/notifications/notification_ui_manager_impl.h" | 16 #include "chrome/browser/notifications/notification_ui_manager_impl.h" |
| 17 | 17 |
| 18 class Notification; | 18 class Notification; |
| 19 class PrefService; | 19 class PrefService; |
| 20 class Profile; | 20 class Profile; |
| 21 | 21 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 // An owned pointer to the collection of active balloons. | 68 // An owned pointer to the collection of active balloons. |
| 69 scoped_ptr<BalloonCollection> balloon_collection_; | 69 scoped_ptr<BalloonCollection> balloon_collection_; |
| 70 | 70 |
| 71 // Prefs listener for the position preference. | 71 // Prefs listener for the position preference. |
| 72 IntegerPrefMember position_pref_; | 72 IntegerPrefMember position_pref_; |
| 73 | 73 |
| 74 DISALLOW_COPY_AND_ASSIGN(BalloonNotificationUIManager); | 74 DISALLOW_COPY_AND_ASSIGN(BalloonNotificationUIManager); |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 #endif // CHROME_BROWSER_NOTIFICATIONS_BALLOON_NOTIFICATION_UI_MANAGER_H_ | 77 #endif // CHROME_BROWSER_NOTIFICATIONS_BALLOON_NOTIFICATION_UI_MANAGER_H_ |
| OLD | NEW |