summaryrefslogtreecommitdiff
path: root/chromium/components/data_reduction_proxy/proto
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-04-05 14:08:31 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-04-11 07:46:53 +0000
commit6a4cabb866f66d4128a97cdc6d9d08ce074f1247 (patch)
treeab00f70a5e89278d6a0d16ff0c42578dc4d84a2d /chromium/components/data_reduction_proxy/proto
parente733310db58160074f574c429d48f8308c0afe17 (diff)
downloadqtwebengine-chromium-6a4cabb866f66d4128a97cdc6d9d08ce074f1247.tar.gz
BASELINE: Update Chromium to 57.0.2987.144
Change-Id: I29db402ff696c71a04c4dbaec822c2e53efe0267 Reviewed-by: Peter Varga <pvarga@inf.u-szeged.hu>
Diffstat (limited to 'chromium/components/data_reduction_proxy/proto')
-rw-r--r--chromium/components/data_reduction_proxy/proto/client_config.proto14
1 files changed, 12 insertions, 2 deletions
diff --git a/chromium/components/data_reduction_proxy/proto/client_config.proto b/chromium/components/data_reduction_proxy/proto/client_config.proto
index 44fd32b45d8..273875f1aec 100644
--- a/chromium/components/data_reduction_proxy/proto/client_config.proto
+++ b/chromium/components/data_reduction_proxy/proto/client_config.proto
@@ -16,7 +16,7 @@ message ClientConfig {
// The time at which the client should request a new configuration. The
// session_key is guaranteed to be valid through this time and may be valid
// for some time thereafter.
- optional Timestamp refresh_time = 2;
+ optional Timestamp DEPRECATED_refresh_time = 2 [deprecated = true];
// The proxy configuration the client should use to connect to the Data Saver
// service.
optional ProxyConfig proxy_config = 3;
@@ -94,7 +94,15 @@ message ProxyServer {
// HTTPS
HTTPS = 2;
// HTTPS over QUIC
- QUIC = 3;
+ DEPRECATED_QUIC = 3 [deprecated = true];
+ }
+
+ // The deployment type of the proxy server.
+ enum ProxyType {
+ // The proxy type is unspecified.
+ UNSPECIFIED_TYPE = 0;
+ // Core Google datacenter.
+ CORE = 1;
}
// The scheme for the proxy server.
@@ -103,6 +111,8 @@ message ProxyServer {
optional string host = 2;
// The port number for the proxy server.
optional int32 port = 3;
+ // The type for the proxy server.
+ optional ProxyType type = 4;
}
// Request object to create a client configuration object.