| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_PRINTING_CLOUD_PRINT_PRIVET_NOTIFICATIONS_H_ | 5 #ifndef CHROME_BROWSER_PRINTING_CLOUD_PRINT_PRIVET_NOTIFICATIONS_H_ |
| 6 #define CHROME_BROWSER_PRINTING_CLOUD_PRINT_PRIVET_NOTIFICATIONS_H_ | 6 #define CHROME_BROWSER_PRINTING_CLOUD_PRINT_PRIVET_NOTIFICATIONS_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "chrome/browser/notifications/notification_delegate.h" | 12 #include "chrome/browser/notifications/notification_delegate.h" |
| 13 #include "chrome/browser/printing/cloud_print/privet_device_lister.h" | 13 #include "chrome/browser/printing/cloud_print/privet_device_lister.h" |
| 14 #include "chrome/browser/printing/cloud_print/privet_http.h" | 14 #include "chrome/browser/printing/cloud_print/privet_http.h" |
| 15 #include "components/keyed_service/core/keyed_service.h" | 15 #include "components/keyed_service/core/keyed_service.h" |
| 16 #include "components/prefs/pref_member.h" | 16 #include "components/prefs/pref_member.h" |
| 17 #include "net/net_features.h" | 17 #include "net/net_features.h" |
| 18 | 18 |
| 19 class NotificationUIManager; | |
| 20 class Profile; | 19 class Profile; |
| 21 | 20 |
| 22 namespace content { | 21 namespace content { |
| 23 class BrowserContext; | 22 class BrowserContext; |
| 24 } | 23 } |
| 25 | 24 |
| 26 namespace local_discovery { | 25 namespace local_discovery { |
| 27 class ServiceDiscoverySharedClient; | 26 class ServiceDiscoverySharedClient; |
| 28 } | 27 } |
| 29 | 28 |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 virtual void DisableNotifications(); | 155 virtual void DisableNotifications(); |
| 157 | 156 |
| 158 void CloseNotification(); | 157 void CloseNotification(); |
| 159 | 158 |
| 160 Profile* const profile_; | 159 Profile* const profile_; |
| 161 }; | 160 }; |
| 162 | 161 |
| 163 } // namespace cloud_print | 162 } // namespace cloud_print |
| 164 | 163 |
| 165 #endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_PRIVET_NOTIFICATIONS_H_ | 164 #endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_PRIVET_NOTIFICATIONS_H_ |
| OLD | NEW |