| 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 <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/prefs/pref_member.h" | |
| 12 #include "chrome/browser/notifications/notification_delegate.h" | 11 #include "chrome/browser/notifications/notification_delegate.h" |
| 13 #include "chrome/browser/printing/cloud_print/privet_device_lister.h" | 12 #include "chrome/browser/printing/cloud_print/privet_device_lister.h" |
| 14 #include "chrome/browser/printing/cloud_print/privet_http.h" | 13 #include "chrome/browser/printing/cloud_print/privet_http.h" |
| 15 #include "components/keyed_service/core/keyed_service.h" | 14 #include "components/keyed_service/core/keyed_service.h" |
| 15 #include "components/prefs/pref_member.h" |
| 16 | 16 |
| 17 class NotificationUIManager; | 17 class NotificationUIManager; |
| 18 | 18 |
| 19 namespace content { | 19 namespace content { |
| 20 class BrowserContext; | 20 class BrowserContext; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace local_discovery { | 23 namespace local_discovery { |
| 24 class ServiceDiscoverySharedClient; | 24 class ServiceDiscoverySharedClient; |
| 25 } | 25 } |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 void DisableNotifications(); | 145 void DisableNotifications(); |
| 146 | 146 |
| 147 ~PrivetNotificationDelegate() override; | 147 ~PrivetNotificationDelegate() override; |
| 148 | 148 |
| 149 content::BrowserContext* profile_; | 149 content::BrowserContext* profile_; |
| 150 }; | 150 }; |
| 151 | 151 |
| 152 } // namespace cloud_print | 152 } // namespace cloud_print |
| 153 | 153 |
| 154 #endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_PRIVET_NOTIFICATIONS_H_ | 154 #endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_PRIVET_NOTIFICATIONS_H_ |
| OLD | NEW |