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

Unified Diff: components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.cc

Issue 596053003: Add client type in chrome-proxy header for desktop. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@extension
Patch Set: Created 6 years, 3 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/browser/data_reduction_proxy_auth_request_handler.cc
diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.cc b/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.cc
index 676cbf58a8200ea1b9b34a4c51b8592e2c29e4de..ce1c7d1fd35ce116c0b7198919611023464a931c 100644
--- a/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.cc
+++ b/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.cc
@@ -35,6 +35,13 @@ const char kAndroidWebViewProtocolVersion[] = "";
const char kClientAndroidWebview[] = "webview";
const char kClientChromeAndroid[] = "android";
const char kClientChromeIOS[] = "ios";
+const char kClientMac[] = "mac";
+const char kClientLinux[] = "linux";
+const char kClientWindows[] = "win";
+const char kClientFreeBsd[] = "freebsd";
+const char kClientOpenBsd[] = "openbsd";
+const char kClientSolaris[] = "solaris";
+const char kClientQnx[] = "qnx";
bengr 2014/09/23 20:18:50 Please add chromeos while you're at it.
Not at Google. Contact bengr 2014/09/29 23:47:18 Done.
// static
bool DataReductionProxyAuthRequestHandler::IsKeySetOnCommandLine() {

Powered by Google App Engine
This is Rietveld 408576698