summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/proxy_config_service_impl_unittest.cc
diff options
context:
space:
mode:
authorkuan@chromium.org <kuan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-02 19:49:56 +0000
committerkuan@chromium.org <kuan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-02 19:49:56 +0000
commit4a00b7fb8a9b6f15dc0602e64fc15afd53d6a923 (patch)
tree3711846a3a97e72b02e080d43aad64e36412a444 /chrome/browser/chromeos/proxy_config_service_impl_unittest.cc
parent343d8617145f54b7625f90eb79f78b0742b927c1 (diff)
downloadchromium_src-4a00b7fb8a9b6f15dc0602e64fc15afd53d6a923.zip
chromium_src-4a00b7fb8a9b6f15dc0602e64fc15afd53d6a923.tar.gz
chromium_src-4a00b7fb8a9b6f15dc0602e64fc15afd53d6a923.tar.bz2
Fix compile warning.
TBR 'cos break is broken. TBR=zelidrag@chromium.org BUG=chromium-os:6839 TEST=none. Review URL: http://codereview.chromium.org/6286054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73489 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/proxy_config_service_impl_unittest.cc')
-rw-r--r--chrome/browser/chromeos/proxy_config_service_impl_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/proxy_config_service_impl_unittest.cc b/chrome/browser/chromeos/proxy_config_service_impl_unittest.cc
index 289e5d8..92ba816 100644
--- a/chrome/browser/chromeos/proxy_config_service_impl_unittest.cc
+++ b/chrome/browser/chromeos/proxy_config_service_impl_unittest.cc
@@ -362,7 +362,7 @@ class ProxyConfigServiceImplTest : public PlatformTest {
ProxyConfigServiceImpl::ProxyConfig init_config;
ProxyConfigServiceImpl::ProxyConfig::ManualProxy* proxy =
init_config.MapSchemeToProxy(scheme);
- net::ProxyServer::Scheme net_scheme;
+ net::ProxyServer::Scheme net_scheme = MK_SCHM(HTTP);
if (scheme == "http" || scheme == "ftp")
net_scheme = MK_SCHM(HTTP);
else if (scheme == "https")