Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(598)

Unified Diff: net/disk_cache/cache_util.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/disk_cache/cache_creator.cc ('k') | net/disk_cache/cache_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/cache_util.h
diff --git a/net/disk_cache/cache_util.h b/net/disk_cache/cache_util.h
deleted file mode 100644
index c4baa2d6110f4200817f014090508dd49b4ebe3e..0000000000000000000000000000000000000000
--- a/net/disk_cache/cache_util.h
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright (c) 2011 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 NET_DISK_CACHE_CACHE_UTIL_H_
-#define NET_DISK_CACHE_CACHE_UTIL_H_
-
-#include "base/basictypes.h"
-#include "net/base/net_export.h"
-#include "net/disk_cache/disk_cache.h"
-
-namespace base {
-class FilePath;
-}
-
-namespace disk_cache {
-
-// Moves the cache files from the given path to another location.
-// Fails if the destination exists already, or if it doesn't have
-// permission for the operation. This is basically a rename operation
-// for the cache directory. Returns true if successful. On ChromeOS,
-// this moves the cache contents, and leaves the empty cache
-// directory.
-NET_EXPORT_PRIVATE bool MoveCache(const base::FilePath& from_path,
- const base::FilePath& to_path);
-
-// Deletes the cache files stored on |path|, and optionally also attempts to
-// delete the folder itself.
-NET_EXPORT_PRIVATE void DeleteCache(const base::FilePath& path,
- bool remove_folder);
-
-// Deletes a cache file.
-NET_EXPORT_PRIVATE bool DeleteCacheFile(const base::FilePath& name);
-
-// Renames cache directory synchronously and fires off a background cleanup
-// task. Used by cache creator itself or by backends for self-restart on error.
-bool DelayedCacheCleanup(const base::FilePath& full_path);
-
-// Returns the preferred max cache size given the available disk space.
-NET_EXPORT_PRIVATE int PreferredCacheSize(int64 available);
-
-// The default cache size should not ideally be exposed, but the blockfile
-// backend uses it for reasons that include testing.
-NET_EXPORT_PRIVATE extern const int kDefaultCacheSize;
-
-} // namespace disk_cache
-
-#endif // NET_DISK_CACHE_CACHE_UTIL_H_
« no previous file with comments | « net/disk_cache/cache_creator.cc ('k') | net/disk_cache/cache_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698