summaryrefslogtreecommitdiffstats
path: root/net/disk_cache/disk_cache.h
diff options
context:
space:
mode:
authordsh@google.com <dsh@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-27 20:43:33 +0000
committerdsh@google.com <dsh@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-27 20:43:33 +0000
commite1acf6f902e50222baf99bfb492ecc38a1604975 (patch)
tree503d45705b14be7e2f1ed86c71d6064abbf90fbe /net/disk_cache/disk_cache.h
parenta2f5993e1ce940e8a8eec900abaeed02e2eee09b (diff)
downloadchromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.zip
chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.tar.gz
chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.tar.bz2
Move Time, TimeDelta and TimeTicks into namespace base.
Review URL: http://codereview.chromium.org/7995 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4022 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache/disk_cache.h')
-rw-r--r--net/disk_cache/disk_cache.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/disk_cache/disk_cache.h b/net/disk_cache/disk_cache.h
index 361ecc2..ab01086 100644
--- a/net/disk_cache/disk_cache.h
+++ b/net/disk_cache/disk_cache.h
@@ -67,11 +67,11 @@ class Backend {
// Marks a range of entries for deletion. This supports unbounded deletes in
// either direction by using null Time values for either argument.
- virtual bool DoomEntriesBetween(const Time initial_time,
- const Time end_time) = 0;
+ virtual bool DoomEntriesBetween(const base::Time initial_time,
+ const base::Time end_time) = 0;
// Marks all entries accessed since initial_time for deletion.
- virtual bool DoomEntriesSince(const Time initial_time) = 0;
+ virtual bool DoomEntriesSince(const base::Time initial_time) = 0;
// Enumerate the cache. Initialize iter to NULL before calling this method
// the first time. That will cause the enumeration to start at the head of
@@ -110,10 +110,10 @@ class Entry {
virtual std::string GetKey() const = 0;
// Returns the time when this cache entry was last used.
- virtual Time GetLastUsed() const = 0;
+ virtual base::Time GetLastUsed() const = 0;
// Returns the time when this cache entry was last modified.
- virtual Time GetLastModified() const = 0;
+ virtual base::Time GetLastModified() const = 0;
// Returns the size of the cache data with the given index.
virtual int32 GetDataSize(int index) const = 0;