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

Side by Side Diff: components/browsing_data/content/storage_partition_http_cache_data_remover.cc

Issue 2127403002: Make browsing_data component a layered component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed output_name from components/browsing_data/content/BUILD.gn Created 4 years, 5 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « components/browsing_data/content/storage_partition_http_cache_data_remover.h ('k') | components/browsing_data/core/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698