OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/disk_cache/simple/simple_index.h" | 5 #include "net/disk_cache/simple/simple_index.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <limits> | 8 #include <limits> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
11 | 11 |
12 #include "base/bind.h" | 12 #include "base/bind.h" |
13 #include "base/bind_helpers.h" | 13 #include "base/bind_helpers.h" |
14 #include "base/files/file_enumerator.h" | 14 #include "base/files/file_enumerator.h" |
15 #include "base/files/file_util.h" | 15 #include "base/files/file_util.h" |
16 #include "base/logging.h" | 16 #include "base/logging.h" |
17 #include "base/message_loop/message_loop.h" | 17 #include "base/message_loop/message_loop.h" |
18 #include "base/metrics/field_trial.h" | 18 #include "base/metrics/field_trial.h" |
19 #include "base/numerics/safe_conversions.h" | 19 #include "base/numerics/safe_conversions.h" |
20 #include "base/pickle.h" | 20 #include "base/pickle.h" |
21 #include "base/strings/string_number_conversions.h" | 21 #include "base/strings/string_number_conversions.h" |
22 #include "base/strings/string_tokenizer.h" | 22 #include "base/strings/string_tokenizer.h" |
23 #include "base/task_runner.h" | 23 #include "base/task_runner.h" |
24 #include "base/threading/worker_pool.h" | |
25 #include "base/time/time.h" | 24 #include "base/time/time.h" |
26 #include "base/trace_event/memory_usage_estimator.h" | 25 #include "base/trace_event/memory_usage_estimator.h" |
27 #include "net/base/net_errors.h" | 26 #include "net/base/net_errors.h" |
28 #include "net/disk_cache/simple/simple_entry_format.h" | 27 #include "net/disk_cache/simple/simple_entry_format.h" |
29 #include "net/disk_cache/simple/simple_histogram_macros.h" | 28 #include "net/disk_cache/simple/simple_histogram_macros.h" |
30 #include "net/disk_cache/simple/simple_index_delegate.h" | 29 #include "net/disk_cache/simple/simple_index_delegate.h" |
31 #include "net/disk_cache/simple/simple_index_file.h" | 30 #include "net/disk_cache/simple/simple_index_file.h" |
32 #include "net/disk_cache/simple/simple_synchronous_entry.h" | 31 #include "net/disk_cache/simple/simple_synchronous_entry.h" |
33 #include "net/disk_cache/simple/simple_util.h" | 32 #include "net/disk_cache/simple/simple_util.h" |
34 | 33 |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 start - last_write_to_disk_); | 512 start - last_write_to_disk_); |
514 } | 513 } |
515 } | 514 } |
516 last_write_to_disk_ = start; | 515 last_write_to_disk_ = start; |
517 | 516 |
518 index_file_->WriteToDisk(reason, entries_set_, cache_size_, start, | 517 index_file_->WriteToDisk(reason, entries_set_, cache_size_, start, |
519 app_on_background_, base::Closure()); | 518 app_on_background_, base::Closure()); |
520 } | 519 } |
521 | 520 |
522 } // namespace disk_cache | 521 } // namespace disk_cache |
OLD | NEW |