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

Unified Diff: content/browser/cache_storage/cache_storage_listener.h

Issue 1088903011: CacheStorage: Remove unused interfaces from CacheStorageListener (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/cache_storage/cache_storage_listener.h
diff --git a/content/browser/cache_storage/cache_storage_listener.h b/content/browser/cache_storage/cache_storage_listener.h
index a60e7a681dce4a2d49b41d7bf9dfa8e72f6c141b..14c5a46f554d798111975d417cb890a353d81f78 100644
--- a/content/browser/cache_storage/cache_storage_listener.h
+++ b/content/browser/cache_storage/cache_storage_listener.h
@@ -33,18 +33,10 @@ class CacheStorageListener {
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,
@@ -92,19 +84,10 @@ class CacheStorageListener {
void Send(IPC::Message* message);
// CacheStorageManager callbacks
- void OnCacheStorageGetCallback(int thread_id,
- int request_id,
- const scoped_refptr<CacheStorageCache>& cache,
- CacheStorage::CacheStorageError error);
void OnCacheStorageHasCallback(int thread_id,
int request_id,
bool has_cache,
CacheStorage::CacheStorageError error);
- void OnCacheStorageCreateCallback(
- int thread_id,
- int request_id,
- const scoped_refptr<CacheStorageCache>& cache,
- CacheStorage::CacheStorageError error);
void OnCacheStorageOpenCallback(int thread_id,
int request_id,
const scoped_refptr<CacheStorageCache>& cache,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698