| OLD | NEW |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2016 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 IOS_CHROME_BROWSER_NOTIFICATION_PROMO_H_ | 5 #ifndef IOS_CHROME_BROWSER_NOTIFICATION_PROMO_H_ |
| 6 #define IOS_CHROME_BROWSER_NOTIFICATION_PROMO_H_ | 6 #define IOS_CHROME_BROWSER_NOTIFICATION_PROMO_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 | 12 |
| 13 class PrefRegistrySimple; | 13 class PrefRegistrySimple; |
| 14 class PrefService; | 14 class PrefService; |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 class DictionaryValue; | 17 class DictionaryValue; |
| 18 class ListValue; | |
| 19 } | 18 } |
| 20 | 19 |
| 21 namespace user_prefs { | 20 namespace user_prefs { |
| 22 class PrefRegistrySyncable; | 21 class PrefRegistrySyncable; |
| 23 } | 22 } |
| 24 | 23 |
| 25 namespace ios { | 24 namespace ios { |
| 26 | 25 |
| 27 // Class that parses and manages promotion data from either a finch trial, json, | 26 // Class that parses and manages promotion data from either a finch trial, json, |
| 28 // or prefs. | 27 // or prefs. |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 121 |
| 123 int views_; | 122 int views_; |
| 124 bool closed_; | 123 bool closed_; |
| 125 | 124 |
| 126 DISALLOW_COPY_AND_ASSIGN(NotificationPromo); | 125 DISALLOW_COPY_AND_ASSIGN(NotificationPromo); |
| 127 }; | 126 }; |
| 128 | 127 |
| 129 } // namespace ios | 128 } // namespace ios |
| 130 | 129 |
| 131 #endif // IOS_CHROME_BROWSER_NOTIFICATION_PROMO_H_ | 130 #endif // IOS_CHROME_BROWSER_NOTIFICATION_PROMO_H_ |
| OLD | NEW |