| 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 COMPONENTS_DATA_REDUCTION_PROXY_CONTENT_BROWSER_DATA_REDUCTION_PROXY_DEB
UG_UI_MANAGER_H_ | 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CONTENT_BROWSER_DATA_REDUCTION_PROXY_DEB
UG_UI_MANAGER_H_ |
| 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CONTENT_BROWSER_DATA_REDUCTION_PROXY_DEB
UG_UI_MANAGER_H_ | 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CONTENT_BROWSER_DATA_REDUCTION_PROXY_DEB
UG_UI_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/message_loop/message_loop_proxy.h" | |
| 15 #include "base/time/time.h" | 14 #include "base/time/time.h" |
| 16 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 17 | 16 |
| 18 namespace base { | 17 namespace base { |
| 19 class SingleThreadTaskRunner; | 18 class SingleThreadTaskRunner; |
| 20 } | 19 } |
| 21 | 20 |
| 22 namespace data_reduction_proxy { | 21 namespace data_reduction_proxy { |
| 23 | 22 |
| 24 // Construction needs to happen on the main thread. | 23 // Construction needs to happen on the main thread. |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; | 88 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; |
| 90 | 89 |
| 91 const std::string& app_locale_; | 90 const std::string& app_locale_; |
| 92 | 91 |
| 93 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyDebugUIManager); | 92 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyDebugUIManager); |
| 94 }; | 93 }; |
| 95 | 94 |
| 96 } // namespace data_reduction_proxy | 95 } // namespace data_reduction_proxy |
| 97 | 96 |
| 98 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CONTENT_BROWSER_DATA_REDUCTION_PROXY_
DEBUG_UI_MANAGER_H_ | 97 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CONTENT_BROWSER_DATA_REDUCTION_PROXY_
DEBUG_UI_MANAGER_H_ |
| OLD | NEW |