Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(348)

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_debug_ui_service.h

Issue 684223003: Data Reduction Proxy Interstitials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Thestig comment and test fix Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..f6ca102bf1c61d6376d64c7fd8990058d71ff5da
--- /dev/null
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_debug_ui_service.h
@@ -0,0 +1,35 @@
+// 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;
+
+// An interface for the ContentDataReductionProxyDebugUIService which creates
+// a DataReductionProxyDebugUIManager that handles showing interstitials. Also
+// provides a method to get the Data Reduction Proxy config.
+class DataReductionProxyDebugUIService {
+ public:
+ virtual ~DataReductionProxyDebugUIService() {}
+
+ // Returns the Data Reduction Proxy config.
+ virtual const net::ProxyConfig& data_reduction_proxy_config() const = 0;
+
+ // Returns the DataReductionProxyDebugUIManager created and owned by this.
+ 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_

Powered by Google App Engine
This is Rietveld 408576698