OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_ENGAGEMENT_SITE_ENGAGEMENT_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_ENGAGEMENT_SITE_ENGAGEMENT_SERVICE_H_ |
6 #define CHROME_BROWSER_ENGAGEMENT_SITE_ENGAGEMENT_SERVICE_H_ | 6 #define CHROME_BROWSER_ENGAGEMENT_SITE_ENGAGEMENT_SERVICE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/gtest_prod_util.h" | |
11 #include "base/macros.h" | 10 #include "base/macros.h" |
12 #include "base/time/default_clock.h" | 11 #include "base/time/default_clock.h" |
13 #include "base/time/time.h" | 12 #include "base/time/time.h" |
14 #include "components/keyed_service/core/keyed_service.h" | 13 #include "components/keyed_service/core/keyed_service.h" |
15 | 14 |
16 namespace base { | 15 namespace base { |
17 class DictionaryValue; | 16 class DictionaryValue; |
18 } | 17 } |
19 | 18 |
20 class GURL; | 19 class GURL; |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 private: | 128 private: |
130 Profile* profile_; | 129 Profile* profile_; |
131 | 130 |
132 // The clock used to vend times. | 131 // The clock used to vend times. |
133 base::DefaultClock clock_; | 132 base::DefaultClock clock_; |
134 | 133 |
135 DISALLOW_COPY_AND_ASSIGN(SiteEngagementService); | 134 DISALLOW_COPY_AND_ASSIGN(SiteEngagementService); |
136 }; | 135 }; |
137 | 136 |
138 #endif // CHROME_BROWSER_ENGAGEMENT_SITE_ENGAGEMENT_SERVICE_H_ | 137 #endif // CHROME_BROWSER_ENGAGEMENT_SITE_ENGAGEMENT_SERVICE_H_ |
OLD | NEW |