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 COMPONENTS_WEB_RESOURCE_NOTIFICATION_PROMO_H_ | 5 #ifndef COMPONENTS_WEB_RESOURCE_NOTIFICATION_PROMO_H_ |
6 #define COMPONENTS_WEB_RESOURCE_NOTIFICATION_PROMO_H_ | 6 #define COMPONENTS_WEB_RESOURCE_NOTIFICATION_PROMO_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/gtest_prod_util.h" | |
12 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
14 #include "url/gurl.h" | 13 #include "url/gurl.h" |
15 | 14 |
16 class PrefRegistrySimple; | 15 class PrefRegistrySimple; |
17 class PrefService; | 16 class PrefService; |
18 | 17 |
19 namespace base { | 18 namespace base { |
20 class DictionaryValue; | 19 class DictionaryValue; |
21 class ListValue; | 20 class ListValue; |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 bool closed_; | 136 bool closed_; |
138 | 137 |
139 bool new_notification_; | 138 bool new_notification_; |
140 | 139 |
141 DISALLOW_COPY_AND_ASSIGN(NotificationPromo); | 140 DISALLOW_COPY_AND_ASSIGN(NotificationPromo); |
142 }; | 141 }; |
143 | 142 |
144 } // namespace web_resource | 143 } // namespace web_resource |
145 | 144 |
146 #endif // COMPONENTS_WEB_RESOURCE_NOTIFICATION_PROMO_H_ | 145 #endif // COMPONENTS_WEB_RESOURCE_NOTIFICATION_PROMO_H_ |
OLD | NEW |