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_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_OBSERVER_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_OBSERVER_H_ |
6 #define CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_OBSERVER_H_ | 6 #define CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_OBSERVER_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, | 102 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, |
103 DataUseReportingOnApplicationStatusChange); | 103 DataUseReportingOnApplicationStatusChange); |
104 #endif | 104 #endif |
105 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, HashFunction); | 105 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, HashFunction); |
106 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, | 106 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, |
107 MatchingRuleFetchOnControlAppInstall); | 107 MatchingRuleFetchOnControlAppInstall); |
108 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, MultipleMatchingRules); | 108 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, MultipleMatchingRules); |
109 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, | 109 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, |
110 PeriodicFetchMatchingRules); | 110 PeriodicFetchMatchingRules); |
111 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, | 111 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, |
| 112 ProcessBufferedNavigationEvents); |
| 113 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, |
112 RegisteredAsDataUseObserver); | 114 RegisteredAsDataUseObserver); |
113 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, ReportsMergedCorrectly); | 115 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, ReportsMergedCorrectly); |
114 FRIEND_TEST_ALL_PREFIXES(DataUseUITabModelTest, ReportTabEventsTest); | 116 FRIEND_TEST_ALL_PREFIXES(DataUseUITabModelTest, ReportTabEventsTest); |
115 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, | 117 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, |
116 TimestampsMergedCorrectly); | 118 TimestampsMergedCorrectly); |
117 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, Variations); | 119 FRIEND_TEST_ALL_PREFIXES(ExternalDataUseObserverTest, Variations); |
118 | 120 |
119 // DataUseReportKey is a unique identifier for a data use report. | 121 // DataUseReportKey is a unique identifier for a data use report. |
120 struct DataUseReportKey { | 122 struct DataUseReportKey { |
121 DataUseReportKey(const std::string& label, | 123 DataUseReportKey(const std::string& label, |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 base::WeakPtrFactory<ExternalDataUseObserver> weak_factory_; | 281 base::WeakPtrFactory<ExternalDataUseObserver> weak_factory_; |
280 | 282 |
281 DISALLOW_COPY_AND_ASSIGN(ExternalDataUseObserver); | 283 DISALLOW_COPY_AND_ASSIGN(ExternalDataUseObserver); |
282 }; | 284 }; |
283 | 285 |
284 } // namespace android | 286 } // namespace android |
285 | 287 |
286 } // namespace chrome | 288 } // namespace chrome |
287 | 289 |
288 #endif // CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_OBSERVER_H_ | 290 #endif // CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_OBSERVER_H_ |
OLD | NEW |