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_PREVIEWS_PREVIEWS_DATA_SAVINGS_H_ | 5 #ifndef COMPONENTS_PREVIEWS_CORE_PREVIEWS_DATA_SAVINGS_H_ |
6 #define CHROME_BROWSER_PREVIEWS_PREVIEWS_DATA_SAVINGS_H_ | 6 #define COMPONENTS_PREVIEWS_CORE_PREVIEWS_DATA_SAVINGS_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/threading/thread_checker.h" | 13 #include "base/threading/thread_checker.h" |
14 | 14 |
15 namespace data_reduction_proxy { | 15 namespace data_reduction_proxy { |
16 class DataSavingsRecorder; | 16 class DataSavingsRecorder; |
(...skipping 24 matching lines...) Expand all Loading... |
41 data_reduction_proxy::DataSavingsRecorder* data_savings_recorder_; | 41 data_reduction_proxy::DataSavingsRecorder* data_savings_recorder_; |
42 | 42 |
43 // Enforce usage on the UI thread. | 43 // Enforce usage on the UI thread. |
44 base::ThreadChecker thread_checker_; | 44 base::ThreadChecker thread_checker_; |
45 | 45 |
46 DISALLOW_COPY_AND_ASSIGN(PreviewsDataSavings); | 46 DISALLOW_COPY_AND_ASSIGN(PreviewsDataSavings); |
47 }; | 47 }; |
48 | 48 |
49 } // namespace previews | 49 } // namespace previews |
50 | 50 |
51 #endif // CHROME_BROWSER_PREVIEWS_PREVIEWS_DATA_SAVINGS_H_ | 51 #endif // COMPONENTS_PREVIEWS_CORE_PREVIEWS_DATA_SAVINGS_H_ |
OLD | NEW |