| OLD | NEW | 
|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 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 CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_REPORTER_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_REPORTER_H_ | 
| 6 #define CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_REPORTER_H_ | 6 #define CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_REPORTER_H_ | 
| 7 | 7 | 
| 8 #include <stddef.h> | 8 #include <stddef.h> | 
| 9 #include <stdint.h> | 9 #include <stdint.h> | 
| 10 | 10 | 
| 11 #include <memory> | 11 #include <memory> | 
| 12 #include <string> | 12 #include <string> | 
| 13 | 13 | 
| 14 #include "base/containers/hash_tables.h" | 14 #include "base/containers/hash_tables.h" | 
|  | 15 #include "base/gtest_prod_util.h" | 
| 15 #include "base/macros.h" | 16 #include "base/macros.h" | 
| 16 #include "base/threading/thread_checker.h" | 17 #include "base/threading/thread_checker.h" | 
| 17 #include "base/time/time.h" | 18 #include "base/time/time.h" | 
| 18 #include "net/base/network_change_notifier.h" | 19 #include "net/base/network_change_notifier.h" | 
| 19 | 20 | 
| 20 #if defined(OS_ANDROID) | 21 #if defined(OS_ANDROID) | 
| 21 #include "base/android/application_status_listener.h" | 22 #include "base/android/application_status_listener.h" | 
| 22 #endif | 23 #endif | 
| 23 | 24 | 
| 24 namespace data_usage { | 25 namespace data_usage { | 
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 232   base::ThreadChecker thread_checker_; | 233   base::ThreadChecker thread_checker_; | 
| 233 | 234 | 
| 234   DISALLOW_COPY_AND_ASSIGN(ExternalDataUseReporter); | 235   DISALLOW_COPY_AND_ASSIGN(ExternalDataUseReporter); | 
| 235 }; | 236 }; | 
| 236 | 237 | 
| 237 }  // namespace android | 238 }  // namespace android | 
| 238 | 239 | 
| 239 }  // namespace chrome | 240 }  // namespace chrome | 
| 240 | 241 | 
| 241 #endif  // CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_REPORTER_H_ | 242 #endif  // CHROME_BROWSER_ANDROID_DATA_USAGE_EXTERNAL_DATA_USE_REPORTER_H_ | 
| OLD | NEW | 
|---|