Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: net/url_request/url_request_job_manager.cc

Issue 10068021: Fix file access on Chrome for ChromeOS on Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix net unittests Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/url_request/url_request_job_manager.h ('k') | net/url_request/url_request_test_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_job_manager.cc
diff --git a/net/url_request/url_request_job_manager.cc b/net/url_request/url_request_job_manager.cc
index f149fb293036dd579f3fa7d4daf7359438ebe0a3..551d94fb46e26c28326cbdd180018908bd6baa43 100644
--- a/net/url_request/url_request_job_manager.cc
+++ b/net/url_request/url_request_job_manager.cc
@@ -122,7 +122,7 @@ URLRequestJob* URLRequestJobManager::CreateJob(
// 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 :-(
+ // don't have a specific error to report here :-(
LOG(WARNING) << "Failed to map: " << request->url().spec();
return new URLRequestErrorJob(request, ERR_FAILED);
}
@@ -264,8 +264,7 @@ void URLRequestJobManager::UnregisterRequestInterceptor(
URLRequestJobManager::URLRequestJobManager()
: allowed_thread_(0),
- allowed_thread_initialized_(false),
- enable_file_access_(false) {
+ allowed_thread_initialized_(false) {
}
URLRequestJobManager::~URLRequestJobManager() {}
« no previous file with comments | « net/url_request/url_request_job_manager.h ('k') | net/url_request/url_request_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698