diff options
Diffstat (limited to 'net/disk_cache/backend_impl.h')
-rw-r--r-- | net/disk_cache/backend_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/disk_cache/backend_impl.h b/net/disk_cache/backend_impl.h index 1ead317..5344c8d 100644 --- a/net/disk_cache/backend_impl.h +++ b/net/disk_cache/backend_impl.h @@ -39,7 +39,7 @@ enum BackendFlags { // This class implements the Backend interface. An object of this // class handles the operations of the cache for a particular profile. -class NET_TEST BackendImpl : public Backend { +class NET_EXPORT_PRIVATE BackendImpl : public Backend { friend class Eviction; public: BackendImpl(const FilePath& path, base::MessageLoopProxy* cache_thread, @@ -383,7 +383,7 @@ class NET_TEST BackendImpl : public Backend { }; // Returns the prefered max cache size given the available disk space. -NET_TEST int PreferedCacheSize(int64 available); +NET_EXPORT_PRIVATE int PreferedCacheSize(int64 available); } // namespace disk_cache |