blob: e0386ee36f6b7f347586a1fe77b2746a169063a2 [file] [log] [blame]
// 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 LegacyCacheStorageCache;
class CONTENT_EXPORT CacheStorageCacheObserver {
public:
// The cache size has been set.
virtual void CacheSizeUpdated(const LegacyCacheStorageCache* cache) = 0;
};
} // namespace content
#endif // CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_CACHE_OBSERVER_H_