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

Unified Diff: mojo/services/network/url_loader_impl.cc

Issue 1378953003: Fix handling of URLRequest::CACHE_MODE_BYPASS_CACHE (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 5 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/network/url_loader_impl.cc
diff --git a/mojo/services/network/url_loader_impl.cc b/mojo/services/network/url_loader_impl.cc
index 1fb0678f6b76de1656e070ece8221cbd889de8be..4dea9b7e9d39f37596f33cae2c5442245a56487d 100644
--- a/mojo/services/network/url_loader_impl.cc
+++ b/mojo/services/network/url_loader_impl.cc
@@ -576,6 +576,7 @@ void URLLoaderImpl::StartInternal(URLRequestPtr request) {
break;
case URLRequest::CACHE_MODE_BYPASS_CACHE:
load_flags |= net::LOAD_BYPASS_CACHE;
+ break;
case URLRequest::CACHE_MODE_ONLY_FROM_CACHE:
load_flags |= net::LOAD_ONLY_FROM_CACHE;
break;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698