Commit 54d0ba2e authored by nhiroki's avatar nhiroki Committed by Commit bot

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}
parent 8950ee16
...@@ -33,18 +33,10 @@ class CacheStorageListener { ...@@ -33,18 +33,10 @@ class CacheStorageListener {
private: private:
// The message receiver functions for the CacheStorage API: // 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, void OnCacheStorageHas(int thread_id,
int request_id, int request_id,
const GURL& origin, const GURL& origin,
const base::string16& cache_name); 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, void OnCacheStorageOpen(int thread_id,
int request_id, int request_id,
const GURL& origin, const GURL& origin,
...@@ -92,19 +84,10 @@ class CacheStorageListener { ...@@ -92,19 +84,10 @@ class CacheStorageListener {
void Send(IPC::Message* message); void Send(IPC::Message* message);
// CacheStorageManager callbacks // CacheStorageManager callbacks
void OnCacheStorageGetCallback(int thread_id,
int request_id,
const scoped_refptr<CacheStorageCache>& cache,
CacheStorage::CacheStorageError error);
void OnCacheStorageHasCallback(int thread_id, void OnCacheStorageHasCallback(int thread_id,
int request_id, int request_id,
bool has_cache, bool has_cache,
CacheStorage::CacheStorageError error); CacheStorage::CacheStorageError error);
void OnCacheStorageCreateCallback(
int thread_id,
int request_id,
const scoped_refptr<CacheStorageCache>& cache,
CacheStorage::CacheStorageError error);
void OnCacheStorageOpenCallback(int thread_id, void OnCacheStorageOpenCallback(int thread_id,
int request_id, int request_id,
const scoped_refptr<CacheStorageCache>& cache, const scoped_refptr<CacheStorageCache>& cache,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment