1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
// 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.
#include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h"
#include <string>
#include "base/memory/scoped_ptr.h"
#include "base/prefs/pref_service.h"
#include "base/prefs/scoped_user_pref_update.h"
#include "base/time/time.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/metrics/chrome_metrics_service_accessor.h"
#include "chrome/browser/prefs/proxy_prefs.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/common/pref_names.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_service.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.h"
#include "components/data_reduction_proxy/core/common/data_reduction_proxy_params.h"
#include "net/url_request/url_request_context_getter.h"
// The Data Reduction Proxy has been turned into a "best effort" proxy,
// meaning it is used only if the effective proxy configuration resolves to
// DIRECT for a URL. It no longer can be a ProxyConfig in the proxy preference
// hierarchy. This method removes the Data Reduction Proxy configuration from
// prefs, if present. |proxy_pref_name| is the name of the proxy pref.
void DataReductionProxyChromeSettings::MigrateDataReductionProxyOffProxyPrefs(
PrefService* prefs) {
base::DictionaryValue* dict =
(base::DictionaryValue*) prefs->GetUserPrefValue(prefs::kProxy);
if (!dict)
return;
// Clear empty "proxy" dictionary created by a bug. See http://crbug/448172.
if (dict->empty()) {
prefs->ClearPref(prefs::kProxy);
return;
}
std::string mode;
if (!dict->GetString("mode", &mode))
return;
// Clear "system" proxy entry since this is the default. This entry was
// created by bug (http://crbug/448172).
if (ProxyModeToString(ProxyPrefs::MODE_SYSTEM) == mode) {
prefs->ClearPref(prefs::kProxy);
return;
}
if (ProxyModeToString(ProxyPrefs::MODE_FIXED_SERVERS) != mode)
return;
std::string proxy_server;
if (!dict->GetString("server", &proxy_server))
return;
net::ProxyConfig::ProxyRules proxy_rules;
proxy_rules.ParseFromString(proxy_server);
if (!Config()->ContainsDataReductionProxy(proxy_rules)) {
return;
}
prefs->ClearPref(prefs::kProxy);
}
DataReductionProxyChromeSettings::DataReductionProxyChromeSettings()
: data_reduction_proxy::DataReductionProxySettings() {
}
DataReductionProxyChromeSettings::~DataReductionProxyChromeSettings() {
}
void DataReductionProxyChromeSettings::Shutdown() {
data_reduction_proxy_service()->Shutdown();
}
void DataReductionProxyChromeSettings::InitDataReductionProxySettings(
data_reduction_proxy::DataReductionProxyIOData* io_data,
PrefService* profile_prefs,
net::URLRequestContextGetter* request_context_getter,
const scoped_refptr<base::SingleThreadTaskRunner>& ui_task_runner) {
#if defined(OS_ANDROID) || defined(OS_IOS)
// On mobile we write Data Reduction Proxy prefs directly to the pref service.
// On desktop we store Data Reduction Proxy prefs in memory, writing to disk
// every 60 minutes and on termination. Shutdown hooks must be added for
// Android and iOS in order for non-zero delays to be supported.
// (http://crbug.com/408264)
base::TimeDelta commit_delay = base::TimeDelta();
#else
base::TimeDelta commit_delay = base::TimeDelta::FromMinutes(60);
#endif
scoped_ptr<data_reduction_proxy::DataReductionProxyStatisticsPrefs>
statistics_prefs = make_scoped_ptr(
new data_reduction_proxy::DataReductionProxyStatisticsPrefs(
profile_prefs, ui_task_runner, commit_delay));
scoped_ptr<data_reduction_proxy::DataReductionProxyService>
service = make_scoped_ptr(
new data_reduction_proxy::DataReductionProxyService(
statistics_prefs.Pass(), this, request_context_getter));
data_reduction_proxy::DataReductionProxySettings::
InitDataReductionProxySettings(profile_prefs, io_data, service.Pass());
io_data->SetDataReductionProxyService(
data_reduction_proxy_service()->GetWeakPtr());
data_reduction_proxy::DataReductionProxySettings::
SetOnDataReductionEnabledCallback(
base::Bind(
&DataReductionProxyChromeSettings::RegisterSyntheticFieldTrial,
base::Unretained(this)));
SetDataReductionProxyAlternativeEnabled(
data_reduction_proxy::DataReductionProxyParams::
IsIncludedInAlternativeFieldTrial());
// TODO(bengr): Remove after M46. See http://crbug.com/445599.
MigrateDataReductionProxyOffProxyPrefs(profile_prefs);
}
void DataReductionProxyChromeSettings::RegisterSyntheticFieldTrial(
bool data_reduction_proxy_enabled) {
ChromeMetricsServiceAccessor::RegisterSyntheticFieldTrial(
"DataReductionProxyEnabled",
data_reduction_proxy_enabled ? "true" : "false");
}
// static
data_reduction_proxy::Client DataReductionProxyChromeSettings::GetClient() {
#if defined(OS_ANDROID)
return data_reduction_proxy::Client::CHROME_ANDROID;
#elif defined(OS_IOS)
return data_reduction_proxy::Client::CHROME_IOS;
#elif defined(OS_MACOSX)
return data_reduction_proxy::Client::CHROME_MAC;
#elif defined(OS_CHROMEOS)
return data_reduction_proxy::Client::CHROME_CHROMEOS;
#elif defined(OS_LINUX)
return data_reduction_proxy::Client::CHROME_LINUX;
#elif defined(OS_WIN)
return data_reduction_proxy::Client::CHROME_WINDOWS;
#elif defined(OS_FREEBSD)
return data_reduction_proxy::Client::CHROME_FREEBSD;
#elif defined(OS_OPENBSD)
return data_reduction_proxy::Client::CHROME_OPENBSD;
#elif defined(OS_SOLARIS)
return data_reduction_proxy::Client::CHROME_SOLARIS;
#elif defined(OS_QNX)
return data_reduction_proxy::Client::CHROME_QNX;
#else
return data_reduction_proxy::Client::UNKNOWN;
#endif
}
|