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..9a52cfc8075617f5cffe87b502e321089bfebc75 |
--- /dev/null |
+++ b/content/browser/cache_storage/cache_storage_cache_observer.h |
@@ -0,0 +1,27 @@ |
+// 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: |
+ // An cache was modified, possibly changing it's size. |
jkarlin
2016/10/21 18:04:19
s/An/A/
cmumford
2016/11/10 17:28:16
Done.
|
+ virtual void CacheModified(const CacheStorageCache* cache, |
jkarlin
2016/10/21 19:24:39
These two functions are subtly different and it's
cmumford
2016/11/10 17:28:17
Agreed. I decided to merge the two into CacheSizeS
|
+ int64_t size_delta) = 0; |
+ |
+ // The cache size has been set. |
+ virtual void SetCacheSize(const CacheStorageCache* cache, |
jkarlin
2016/10/21 19:24:39
Prefer CacheSizeSet as you're not actually setting
cmumford
2016/11/10 17:28:16
Acknowledged.
|
+ int64_t cache_size) = 0; |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_CACHE_OBSERVER_H_ |