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

Unified Diff: chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_factory.h

Issue 412143009: Moved data reduction proxy initialization logic to ProfileImplIOData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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: chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_factory.h
diff --git a/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_factory.h b/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..bf31500cff6817287567eba18e24f2762a9cdc53
--- /dev/null
+++ b/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_factory.h
@@ -0,0 +1,48 @@
+// Copyright 2014 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 CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_CHROME_SETTINGS_FACTORY_H_
+#define CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_CHROME_SETTINGS_FACTORY_H_
+
+#include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_factory.h"
+
+#include "base/compiler_specific.h"
+#include "base/memory/singleton.h"
+#include "components/data_reduction_proxy/browser/data_reduction_proxy_params.h"
+#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
+
+class DataReductionProxyChromeSettings;
+
+// Constucts a DataReductionProxySettings object suitable for use with a
+// Chrome browser.
+class DataReductionProxyChromeSettingsFactory
+ : public BrowserContextKeyedServiceFactory {
+ public:
+
+ // Returns a settings object for the given context.
+ static DataReductionProxyChromeSettings* GetForBrowserContext(
+ content::BrowserContext* context);
+
+ // Returns true if this context has a settings object.
+ static bool HasDataReductionProxyChromeSettings(
+ content::BrowserContext* context);
+
+ // Returns an instance of this factory.
+ static DataReductionProxyChromeSettingsFactory* GetInstance();
+
+ private:
+ friend struct DefaultSingletonTraits<DataReductionProxyChromeSettingsFactory>;
+
+ DataReductionProxyChromeSettingsFactory();
+
+ virtual ~DataReductionProxyChromeSettingsFactory();
+
+ // BrowserContextKeyedServiceFactory:
+ virtual KeyedService* BuildServiceInstanceFor(
+ content::BrowserContext* context) const OVERRIDE;
+
+ DISALLOW_COPY_AND_ASSIGN(DataReductionProxyChromeSettingsFactory);
+};
+
+#endif // CHROME_BROWSER_NET_SPDYPROXY_DATA_REDUCTION_PROXY_CHROME_SETTINGS_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698