summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorrafaelw@chromium.org <rafaelw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-29 18:28:47 +0000
committerrafaelw@chromium.org <rafaelw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-29 18:28:47 +0000
commit84c4eb3414d064cd1a836451b04cab3659528c0e (patch)
tree6c33f7991562ac3931f785bd982e3b72018396b0 /net
parent3ee4b5348e0f213c31cc5cc5380bec88f2345f06 (diff)
downloadchromium_src-84c4eb3414d064cd1a836451b04cab3659528c0e.zip
chromium_src-84c4eb3414d064cd1a836451b04cab3659528c0e.tar.gz
chromium_src-84c4eb3414d064cd1a836451b04cab3659528c0e.tar.bz2
Enable ExtensionApiTest.Toolstrip and add additional debug output.
This output is testing the prospect that the cause of the flakiness is a race to the IO thread between the renderer that is requesting a chrome-extension page and the message to insert the correct mapping to service the request. BUG=22668 Review URL: http://codereview.chromium.org/251025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27516 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/url_request/url_request_job_manager.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/url_request/url_request_job_manager.cc b/net/url_request/url_request_job_manager.cc
index 617a938..616ce30 100644
--- a/net/url_request/url_request_job_manager.cc
+++ b/net/url_request/url_request_job_manager.cc
@@ -99,6 +99,7 @@ URLRequestJob* URLRequestJobManager::CreateJob(URLRequest* request) const {
// If we reached here, then it means that a registered protocol factory
// wasn't interested in handling the URL. That is fairly unexpected, and we
// don't know have a specific error to report here :-(
+ LOG(WARNING) << "Failed to map: " << request->url().spec();
return new URLRequestErrorJob(request, net::ERR_FAILED);
}