| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "components/browsing_data/storage_partition_http_cache_data_remover.h" | 5 #include "components/browsing_data/content/storage_partition_http_cache_data_rem
over.h" |
| 6 | 6 |
| 7 #include "base/location.h" | 7 #include "base/location.h" |
| 8 #include "base/single_thread_task_runner.h" | 8 #include "base/single_thread_task_runner.h" |
| 9 #include "base/threading/thread_task_runner_handle.h" | 9 #include "base/threading/thread_task_runner_handle.h" |
| 10 #include "components/browsing_data/conditional_cache_deletion_helper.h" | 10 #include "components/browsing_data/content/conditional_cache_deletion_helper.h" |
| 11 #include "content/public/browser/browser_thread.h" | 11 #include "content/public/browser/browser_thread.h" |
| 12 #include "content/public/browser/storage_partition.h" | 12 #include "content/public/browser/storage_partition.h" |
| 13 #include "net/base/sdch_manager.h" | 13 #include "net/base/sdch_manager.h" |
| 14 #include "net/disk_cache/blockfile/backend_impl.h" | 14 #include "net/disk_cache/blockfile/backend_impl.h" |
| 15 #include "net/disk_cache/disk_cache.h" | 15 #include "net/disk_cache/disk_cache.h" |
| 16 #include "net/disk_cache/memory/mem_backend_impl.h" | 16 #include "net/disk_cache/memory/mem_backend_impl.h" |
| 17 #include "net/disk_cache/simple/simple_backend_impl.h" | 17 #include "net/disk_cache/simple/simple_backend_impl.h" |
| 18 #include "net/http/http_cache.h" | 18 #include "net/http/http_cache.h" |
| 19 #include "net/url_request/url_request_context.h" | 19 #include "net/url_request/url_request_context.h" |
| 20 #include "net/url_request/url_request_context_getter.h" | 20 #include "net/url_request/url_request_context_getter.h" |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 default: { | 301 default: { |
| 302 NOTREACHED() << "bad state"; | 302 NOTREACHED() << "bad state"; |
| 303 next_cache_state_ = STATE_NONE; // Stop looping. | 303 next_cache_state_ = STATE_NONE; // Stop looping. |
| 304 return; | 304 return; |
| 305 } | 305 } |
| 306 } | 306 } |
| 307 } | 307 } |
| 308 } | 308 } |
| 309 | 309 |
| 310 } // namespace browsing_data | 310 } // namespace browsing_data |
| OLD | NEW |