diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-11 23:12:51 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-11 23:12:51 +0000 |
commit | 95d360384a6d9c04e930ce58fb6190b53eb061f6 (patch) | |
tree | 1c70a82691045000254ba9ee2923540d88d134d6 /chrome/browser | |
parent | 2d01c26846278a34557641fd51ca0972331df263 (diff) | |
download | chromium_src-95d360384a6d9c04e930ce58fb6190b53eb061f6.zip chromium_src-95d360384a6d9c04e930ce58fb6190b53eb061f6.tar.gz chromium_src-95d360384a6d9c04e930ce58fb6190b53eb061f6.tar.bz2 |
Update Autofill query and upload URLs to use https.
BUG=71601
TEST=none
Review URL: http://codereview.chromium.org/7620004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96482 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/autofill/autofill_download.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/autofill/autofill_download.cc b/chrome/browser/autofill/autofill_download.cc index 7664210..8e4b4b8 100644 --- a/chrome/browser/autofill/autofill_download.cc +++ b/chrome/browser/autofill/autofill_download.cc @@ -24,9 +24,9 @@ namespace { const char kAutofillQueryServerRequestUrl[] = - "http://toolbarqueries.clients.google.com:80/tbproxy/af/query"; + "https://toolbarqueries.google.com/tbproxy/af/query"; const char kAutofillUploadServerRequestUrl[] = - "http://toolbarqueries.clients.google.com:80/tbproxy/af/upload"; + "https://toolbarqueries.google.com/tbproxy/af/upload"; const char kAutofillQueryServerNameStartInHeader[] = "GFE/"; const size_t kMaxFormCacheSize = 16; |