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

Unified Diff: net/base/load_flags_list.h

Issue 9433015: Add a force pipelining option to load flags. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix build on other platforms Created 8 years, 10 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
Index: net/base/load_flags_list.h
diff --git a/net/base/load_flags_list.h b/net/base/load_flags_list.h
index 635ce7999f924666b1724b1027924b2229cc5d89..fc2deb0423820bea265f5b21b06a3d4f915d3c7e 100644
--- a/net/base/load_flags_list.h
+++ b/net/base/load_flags_list.h
@@ -114,3 +114,8 @@ LOAD_FLAG(DO_NOT_PROMPT_FOR_LOGIN, 1 << 25)
// explicit user action. This can be used as a hint to treat the
// request with higher priority.
LOAD_FLAG(MAYBE_USER_GESTURE, 1 << 26)
+
+// Force this request to be issued on the same connection as other forced
+// pipelining requests. Requests will be buffered to improve the likelihood of
+// multiple requests being issued in the same packet.
+LOAD_FLAG(FORCE_HTTP_PIPELINING, 1 << 27)

Powered by Google App Engine
This is Rietveld 408576698