diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-29 06:15:44 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-29 06:15:44 +0000 |
commit | 13c8a0903376ff406151679d8673a6452d721290 (patch) | |
tree | dbb5b8e9503f8d0ee447863089f3e6f23692910f /net/base/net_util.h | |
parent | 6b55570f03236557b8b966b08dfbdda1ea91aadc (diff) | |
download | chromium_src-13c8a0903376ff406151679d8673a6452d721290.zip chromium_src-13c8a0903376ff406151679d8673a6452d721290.tar.gz chromium_src-13c8a0903376ff406151679d8673a6452d721290.tar.bz2 |
Net: Convert username and password to string16.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3040016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54101 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/net_util.h')
-rw-r--r-- | net/base/net_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/base/net_util.h b/net/base/net_util.h index 7b2ed36..44bda41 100644 --- a/net/base/net_util.h +++ b/net/base/net_util.h @@ -106,8 +106,8 @@ std::string GetHostName(); // Extracts the unescaped username/password from |url|, saving the results // into |*username| and |*password|. void GetIdentityFromURL(const GURL& url, - std::wstring* username, - std::wstring* password); + string16* username, + string16* password); // Returns either the host from |url|, or, if the host is empty, the full spec. std::string GetHostOrSpecFromURL(const GURL& url); |