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

Unified Diff: content/browser/cache_storage/cache_storage_dispatcher_host.cc

Issue 1039763002: Cache Storage: Move files to content/*/cache_storage, rename classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GN fix Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/cache_storage/cache_storage_dispatcher_host.cc
diff --git a/content/browser/service_worker/cache_storage_dispatcher_host.cc b/content/browser/cache_storage/cache_storage_dispatcher_host.cc
similarity index 80%
rename from content/browser/service_worker/cache_storage_dispatcher_host.cc
rename to content/browser/cache_storage/cache_storage_dispatcher_host.cc
index db258329c6af5303631e016983a5b59996889257..93151ddaf8fe2b5a71650cd0091d835947477d74 100644
--- a/content/browser/service_worker/cache_storage_dispatcher_host.cc
+++ b/content/browser/cache_storage/cache_storage_dispatcher_host.cc
@@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/browser/service_worker/cache_storage_dispatcher_host.h"
+#include "content/browser/cache_storage/cache_storage_dispatcher_host.h"
#include "base/logging.h"
-#include "content/browser/service_worker/cache_storage_context_impl.h"
-#include "content/browser/service_worker/service_worker_cache_listener.h"
-#include "content/common/service_worker/cache_storage_messages.h"
+#include "content/browser/cache_storage/cache_storage_context_impl.h"
+#include "content/browser/cache_storage/cache_storage_listener.h"
+#include "content/common/cache_storage/cache_storage_messages.h"
#include "content/public/browser/content_browser_client.h"
namespace content {
@@ -51,7 +51,7 @@ bool CacheStorageDispatcherHost::OnMessageReceived(
void CacheStorageDispatcherHost::CreateCacheListener(
CacheStorageContextImpl* context) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
- cache_listener_.reset(new ServiceWorkerCacheListener(this, context));
+ cache_listener_.reset(new CacheStorageListener(this, context));
}
} // namespace content
« no previous file with comments | « content/browser/cache_storage/cache_storage_dispatcher_host.h ('k') | content/browser/cache_storage/cache_storage_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698