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

Side by Side Diff: net/http/http_cache.cc

Issue 20378: Reduce the amount of included header files. Vast change like in "Oh God! This... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 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 unified diff | Download patch | Annotate | Revision Log
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 #include "net/http/http_cache.h" 5 #include "net/http/http_cache.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
11 #include "base/pickle.h" 11 #include "base/pickle.h"
12 #include "base/ref_counted.h" 12 #include "base/ref_counted.h"
13 #include "base/string_util.h" 13 #include "base/string_util.h"
14 #include "base/time.h" 14 #include "base/time.h"
15 #include "net/base/io_buffer.h" 15 #include "net/base/io_buffer.h"
16 #include "net/base/load_flags.h" 16 #include "net/base/load_flags.h"
17 #include "net/base/net_errors.h" 17 #include "net/base/net_errors.h"
18 #include "net/disk_cache/disk_cache.h" 18 #include "net/disk_cache/disk_cache.h"
19 #include "net/http/http_network_layer.h" 19 #include "net/http/http_network_layer.h"
20 #include "net/http/http_request_info.h" 20 #include "net/http/http_request_info.h"
21 #include "net/http/http_response_headers.h"
21 #include "net/http/http_response_info.h" 22 #include "net/http/http_response_info.h"
22 #include "net/http/http_transaction.h" 23 #include "net/http/http_transaction.h"
23 #include "net/http/http_util.h" 24 #include "net/http/http_util.h"
24 25
25 using base::Time; 26 using base::Time;
26 27
27 namespace net { 28 namespace net {
28 29
29 // disk cache entry data indices. 30 // disk cache entry data indices.
30 enum { 31 enum {
(...skipping 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 1407
1407 entry->pending_queue.erase(entry->pending_queue.begin()); 1408 entry->pending_queue.erase(entry->pending_queue.begin());
1408 1409
1409 AddTransactionToEntry(entry, next); 1410 AddTransactionToEntry(entry, next);
1410 } 1411 }
1411 1412
1412 //----------------------------------------------------------------------------- 1413 //-----------------------------------------------------------------------------
1413 1414
1414 } // namespace net 1415 } // namespace net
1415 1416
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698