diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-29 03:58:42 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-29 03:58:42 +0000 |
commit | 33abb68653d6cc45e9bf1727b22ad375d34bbbf1 (patch) | |
tree | ea16f090dc6f781bdc6512946ba8e2e5524274dd /net | |
parent | 341a98455f45935b98af3b2415705250c33a2ae8 (diff) | |
download | chromium_src-33abb68653d6cc45e9bf1727b22ad375d34bbbf1.zip chromium_src-33abb68653d6cc45e9bf1727b22ad375d34bbbf1.tar.gz chromium_src-33abb68653d6cc45e9bf1727b22ad375d34bbbf1.tar.bz2 |
Add a bug annotation to a TODO.
BUG=77366
Review URL: http://codereview.chromium.org/6756011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79657 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/proxy/proxy_script_fetcher_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/proxy/proxy_script_fetcher_impl.cc b/net/proxy/proxy_script_fetcher_impl.cc index e840189..aabe340 100644 --- a/net/proxy/proxy_script_fetcher_impl.cc +++ b/net/proxy/proxy_script_fetcher_impl.cc @@ -17,7 +17,7 @@ #include "net/url_request/url_request_context.h" // TODO(eroman): -// - Support auth-prompts. +// - Support auth-prompts (http://crbug.com/77366) namespace net { @@ -178,7 +178,7 @@ URLRequestContext* ProxyScriptFetcherImpl::GetRequestContext() { void ProxyScriptFetcherImpl::OnAuthRequired(URLRequest* request, AuthChallengeInfo* auth_info) { DCHECK_EQ(request, cur_request_.get()); - // TODO(eroman): + // TODO(eroman): http://crbug.com/77366 LOG(WARNING) << "Auth required to fetch PAC script, aborting."; result_code_ = ERR_NOT_IMPLEMENTED; request->CancelAuth(); |