summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authornhiroki <nhiroki@chromium.org>2015-04-26 21:32:15 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-27 04:32:18 +0000
commit54d0ba2e50eb5a92899253cca258b626cd865605 (patch)
treee5c607a31f6fed4aa0c93e9531fa1ac7e6b37bd5 /content
parent8950ee16e04447edbd6db135dfde3fd2b62c6781 (diff)
downloadchromium_src-54d0ba2e50eb5a92899253cca258b626cd865605.zip
chromium_src-54d0ba2e50eb5a92899253cca258b626cd865605.tar.gz
chromium_src-54d0ba2e50eb5a92899253cca258b626cd865605.tar.bz2
CacheStorage: Remove unused interfaces from CacheStorageListener
BUG=n/a TEST=compile Review URL: https://codereview.chromium.org/1088903011 Cr-Commit-Position: refs/heads/master@{#326997}
Diffstat (limited to 'content')
-rw-r--r--content/browser/cache_storage/cache_storage_listener.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/content/browser/cache_storage/cache_storage_listener.h b/content/browser/cache_storage/cache_storage_listener.h
index a60e7a6..14c5a46 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,