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

Unified Diff: content/browser/service_worker/service_worker_cache_listener.h

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/service_worker/service_worker_cache_listener.h
diff --git a/content/browser/service_worker/service_worker_cache_listener.h b/content/browser/service_worker/service_worker_cache_listener.h
deleted file mode 100644
index 2fac7b532568dc83b6806a8b7305c04e91701e0a..0000000000000000000000000000000000000000
--- a/content/browser/service_worker/service_worker_cache_listener.h
+++ /dev/null
@@ -1,185 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CACHE_LISTENER_H_
-#define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CACHE_LISTENER_H_
-
-#include <list>
-#include <map>
-
-#include "base/memory/weak_ptr.h"
-#include "base/strings/string16.h"
-#include "content/browser/service_worker/cache_storage_dispatcher_host.h"
-#include "content/browser/service_worker/service_worker_cache.h"
-#include "content/browser/service_worker/service_worker_cache_storage.h"
-
-namespace content {
-
-struct ServiceWorkerBatchOperation;
-struct ServiceWorkerCacheQueryParams;
-struct ServiceWorkerFetchRequest;
-
-// This class listens for requests on the Cache APIs, and sends response
-// messages to the renderer process. There is one instance per
-// CacheStorageDispatcherHost instance.
-class ServiceWorkerCacheListener {
- public:
- ServiceWorkerCacheListener(CacheStorageDispatcherHost* dispatcher,
- CacheStorageContextImpl* context);
- ~ServiceWorkerCacheListener();
-
- bool OnMessageReceived(const IPC::Message& message);
-
- private:
- // The message receiver functions for the CacheStorage API:
- void OnCacheStorageGet(int thread_id,
- int request_id,
- const GURL& origin,
- const base::string16& cache_name);
- void OnCacheStorageHas(int thread_id,
- int request_id,
- const GURL& origin,
- const base::string16& cache_name);
- void OnCacheStorageCreate(int thread_id,
- int request_id,
- const GURL& origin,
- const base::string16& cache_name);
- void OnCacheStorageOpen(int thread_id,
- int request_id,
- const GURL& origin,
- const base::string16& cache_name);
- void OnCacheStorageDelete(int thread_id,
- int request_id,
- const GURL& origin,
- const base::string16& cache_name);
- void OnCacheStorageKeys(int thread_id, int request_id, const GURL& origin);
- void OnCacheStorageMatch(int thread_id,
- int request_id,
- const GURL& origin,
- const ServiceWorkerFetchRequest& request,
- const ServiceWorkerCacheQueryParams& match_params);
-
- // The message receiver functions for the Cache API:
- void OnCacheMatch(int thread_id,
- int request_id,
- int cache_id,
- const ServiceWorkerFetchRequest& request,
- const ServiceWorkerCacheQueryParams& match_params);
- void OnCacheMatchAll(int thread_id,
- int request_id,
- int cache_id,
- const ServiceWorkerFetchRequest& request,
- const ServiceWorkerCacheQueryParams& match_params);
- void OnCacheKeys(int thread_id,
- int request_id,
- int cache_id,
- const ServiceWorkerFetchRequest& request,
- const ServiceWorkerCacheQueryParams& match_params);
- void OnCacheBatch(int thread_id,
- int request_id,
- int cache_id,
- const std::vector<ServiceWorkerBatchOperation>& operations);
- void OnCacheClosed(int cache_id);
- void OnBlobDataHandled(const std::string& uuid);
-
- private:
- typedef int32_t CacheID; // TODO(jkarlin): Bump to 64 bit.
- typedef std::map<CacheID, scoped_refptr<ServiceWorkerCache>> IDToCacheMap;
- typedef std::map<std::string, std::list<storage::BlobDataHandle>>
- UUIDToBlobDataHandleList;
-
- void Send(IPC::Message* message);
-
- // CacheStorageManager callbacks
- void OnCacheStorageGetCallback(
- int thread_id,
- int request_id,
- const scoped_refptr<ServiceWorkerCache>& cache,
- ServiceWorkerCacheStorage::CacheStorageError error);
- void OnCacheStorageHasCallback(
- int thread_id,
- int request_id,
- bool has_cache,
- ServiceWorkerCacheStorage::CacheStorageError error);
- void OnCacheStorageCreateCallback(
- int thread_id,
- int request_id,
- const scoped_refptr<ServiceWorkerCache>& cache,
- ServiceWorkerCacheStorage::CacheStorageError error);
- void OnCacheStorageOpenCallback(
- int thread_id,
- int request_id,
- const scoped_refptr<ServiceWorkerCache>& cache,
- ServiceWorkerCacheStorage::CacheStorageError error);
- void OnCacheStorageDeleteCallback(
- int thread_id,
- int request_id,
- bool deleted,
- ServiceWorkerCacheStorage::CacheStorageError error);
- void OnCacheStorageKeysCallback(
- int thread_id,
- int request_id,
- const std::vector<std::string>& strings,
- ServiceWorkerCacheStorage::CacheStorageError error);
- void OnCacheStorageMatchCallback(
- int thread_id,
- int request_id,
- ServiceWorkerCache::ErrorType error,
- scoped_ptr<ServiceWorkerResponse> response,
- scoped_ptr<storage::BlobDataHandle> blob_data_handle);
-
- // Cache callbacks
- void OnCacheMatchCallback(
- int thread_id,
- int request_id,
- const scoped_refptr<ServiceWorkerCache>& cache,
- ServiceWorkerCache::ErrorType error,
- scoped_ptr<ServiceWorkerResponse> response,
- scoped_ptr<storage::BlobDataHandle> blob_data_handle);
- void OnCacheKeysCallback(int thread_id,
- int request_id,
- const scoped_refptr<ServiceWorkerCache>& cache,
- ServiceWorkerCache::ErrorType error,
- scoped_ptr<ServiceWorkerCache::Requests> requests);
- void OnCacheDeleteCallback(int thread_id,
- int request_id,
- const scoped_refptr<ServiceWorkerCache>& cache,
- ServiceWorkerCache::ErrorType error);
- void OnCachePutCallback(int thread_id,
- int request_id,
- const scoped_refptr<ServiceWorkerCache>& cache,
- ServiceWorkerCache::ErrorType error,
- scoped_ptr<ServiceWorkerResponse> response,
- scoped_ptr<storage::BlobDataHandle> blob_data_handle);
-
- // Hangs onto a scoped_refptr for the cache if it isn't already doing so.
- // Returns a unique cache_id. Call DropCacheReference when the client is done
- // with this cache.
- CacheID StoreCacheReference(const scoped_refptr<ServiceWorkerCache>& cache);
- void DropCacheReference(CacheID cache_id);
-
- // Stores blob handles while waiting for acknowledgement of receipt from the
- // renderer.
- void StoreBlobDataHandle(
- scoped_ptr<storage::BlobDataHandle> blob_data_handle);
- void DropBlobDataHandle(std::string uuid);
-
- // Pointer to the context that owns this instance.
- CacheStorageDispatcherHost* dispatcher_;
-
- scoped_refptr<CacheStorageContextImpl> context_;
-
- IDToCacheMap id_to_cache_map_;
- CacheID next_cache_id_ = 0;
-
- UUIDToBlobDataHandleList blob_handle_store_;
-
- base::WeakPtrFactory<ServiceWorkerCacheListener> weak_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(ServiceWorkerCacheListener);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CACHE_LISTENER_H_

Powered by Google App Engine
This is Rietveld 408576698