Chromium Code Reviews| Index: content/browser/cache_storage/cache_storage_cache_observer.h |
| diff --git a/content/browser/cache_storage/cache_storage_cache_observer.h b/content/browser/cache_storage/cache_storage_cache_observer.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ad61bf8cbd098db158ae702374db4ada1d681618 |
| --- /dev/null |
| +++ b/content/browser/cache_storage/cache_storage_cache_observer.h |
| @@ -0,0 +1,28 @@ |
| +// Copyright 2016 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_CACHE_STORAGE_CACHE_STORAGE_CACHE_OBSERVER_H_ |
| +#define CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_CACHE_OBSERVER_H_ |
| + |
| +#include "content/common/content_export.h" |
| + |
| +namespace content { |
| + |
| +class CacheStorageCache; |
| + |
| +class CONTENT_EXPORT CacheStorageCacheObserver { |
| + public: |
| + // SET: The cache size has been set to the absolute size. |
| + // DELTA: The cache size has changed by the specified amount. |
| + enum class Whence { SET, DELTA }; |
| + |
| + // The cache size has changed. |
| + virtual void CacheSizeSet(const CacheStorageCache* cache, |
|
jkarlin
2016/11/23 16:02:18
See my earlier comment, but I think this could tur
cmumford
2016/11/29 18:10:20
I went with CacheSizeUpdated.
|
| + Whence whence, |
| + int64_t size) = 0; |
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_CACHE_OBSERVER_H_ |