Chromium Code Reviews| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_debug_ui_service.h |
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_debug_ui_service.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_debug_ui_service.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b1ebf9caada99d0b8ebb671adaad6af4f4fc07d3 |
| --- /dev/null |
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_debug_ui_service.h |
| @@ -0,0 +1,30 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_DEBUG_UI_SERVICE_H_ |
| +#define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_DEBUG_UI_SERVICE_H_ |
| + |
| +#include "base/memory/ref_counted.h" |
| + |
| +namespace net { |
| +class ProxyConfig; |
| +} |
| + |
| +namespace data_reduction_proxy { |
| + |
| +class DataReductionProxyDebugUIManager; |
| + |
| +class DataReductionProxyDebugUIService { |
|
bengr
2015/02/05 00:23:47
Please add comments to this class including a clas
megjablon
2015/02/07 05:15:14
Done.
|
| + public: |
| + virtual ~DataReductionProxyDebugUIService() {} |
| + |
| + virtual const net::ProxyConfig& data_reduction_proxy_config() const = 0; |
| + |
| + virtual const |
| + scoped_refptr<DataReductionProxyDebugUIManager>& ui_manager() const = 0; |
| +}; |
| + |
| +} // namespace data_reduction_proxy |
| + |
| +#endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_DEBUG_UI_SERVICE_H_ |