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

Side by Side Diff: net/http/http_network_transaction.h

Issue 111005: Bypass the cache for the second or later HttpCache::Transaction... Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/http/http_cache.cc ('k') | net/http/http_network_transaction.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 5 #ifndef NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/ref_counted.h" 10 #include "base/ref_counted.h"
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 STATE_WRITE_HEADERS, 377 STATE_WRITE_HEADERS,
378 STATE_WRITE_HEADERS_COMPLETE, 378 STATE_WRITE_HEADERS_COMPLETE,
379 STATE_WRITE_BODY, 379 STATE_WRITE_BODY,
380 STATE_WRITE_BODY_COMPLETE, 380 STATE_WRITE_BODY_COMPLETE,
381 STATE_READ_HEADERS, 381 STATE_READ_HEADERS,
382 STATE_READ_HEADERS_COMPLETE, 382 STATE_READ_HEADERS_COMPLETE,
383 STATE_READ_BODY, 383 STATE_READ_BODY,
384 STATE_READ_BODY_COMPLETE, 384 STATE_READ_BODY_COMPLETE,
385 STATE_DRAIN_BODY_FOR_AUTH_RESTART, 385 STATE_DRAIN_BODY_FOR_AUTH_RESTART,
386 STATE_DRAIN_BODY_FOR_AUTH_RESTART_COMPLETE, 386 STATE_DRAIN_BODY_FOR_AUTH_RESTART_COMPLETE,
387 STATE_WAITING_FOR_USER_ACTION,
387 STATE_NONE 388 STATE_NONE
388 }; 389 };
389 State next_state_; 390 State next_state_;
390 }; 391 };
391 392
392 } // namespace net 393 } // namespace net
393 394
394 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 395 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
OLDNEW
« no previous file with comments | « net/http/http_cache.cc ('k') | net/http/http_network_transaction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698