summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2012-02-14 16:16:29 +0000
committerBen Murdoch <benm@google.com>2012-02-16 13:41:38 +0000
commit4f3a742b60841cf402cd4192bd864afb7306356b (patch)
treec3120824726c59321933365d001f5d6dd4b65d01
parent940e47a8a93a8720ca55c0966689f4cdd4bf5b4e (diff)
downloadchromium-4f3a742b60841cf402cd4192bd864afb7306356b.tar.gz
Append client parameter to AutoFill server requests.
Bug: 4515820 Change-Id: I32fe0918c0d9f80f1930a481e47c3e7ce285c329
-rw-r--r--chrome/browser/autofill/autofill_download.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/autofill/autofill_download.cc b/chrome/browser/autofill/autofill_download.cc
index 295aef02..e9f49b3b 100644
--- a/chrome/browser/autofill/autofill_download.cc
+++ b/chrome/browser/autofill/autofill_download.cc
@@ -30,6 +30,9 @@
#define AUTO_FILL_UPLOAD_SERVER_REQUEST_URL \
"http://toolbarqueries.clients.google.com:80/tbproxy/af/upload"
#define AUTO_FILL_QUERY_SERVER_NAME_START_IN_HEADER "GFE/"
+#ifdef ANDROID
+#define ANDROID_AUTOFILL_CLIENT_PARAM "?client=AndroidBrowser"
+#endif
namespace {
const size_t kMaxFormCacheSize = 16;
@@ -225,6 +228,8 @@ bool AutofillDownloadManager::StartRequest(
request_url = android::AutofillRequestUrl::GetQueryUrl();
if (request_url.empty())
return false;
+ request_url += ANDROID_AUTOFILL_CLIENT_PARAM;
+
}
#endif