diff options
author | dsh@google.com <dsh@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-27 20:43:33 +0000 |
---|---|---|
committer | dsh@google.com <dsh@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-27 20:43:33 +0000 |
commit | e1acf6f902e50222baf99bfb492ecc38a1604975 (patch) | |
tree | 503d45705b14be7e2f1ed86c71d6064abbf90fbe /net/disk_cache/backend_impl.h | |
parent | a2f5993e1ce940e8a8eec900abaeed02e2eee09b (diff) | |
download | chromium_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/backend_impl.h')
-rw-r--r-- | net/disk_cache/backend_impl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/disk_cache/backend_impl.h b/net/disk_cache/backend_impl.h index 6818d84..40b6f51 100644 --- a/net/disk_cache/backend_impl.h +++ b/net/disk_cache/backend_impl.h @@ -41,9 +41,9 @@ class BackendImpl : public Backend { virtual bool CreateEntry(const std::string& key, Entry** entry); virtual bool DoomEntry(const std::string& key); virtual bool DoomAllEntries(); - virtual bool DoomEntriesBetween(const Time initial_time, - const Time end_time); - virtual bool DoomEntriesSince(const Time initial_time); + virtual bool DoomEntriesBetween(const base::Time initial_time, + const base::Time end_time); + virtual bool DoomEntriesSince(const base::Time initial_time); virtual bool OpenNextEntry(void** iter, Entry** next_entry); virtual void EndEnumeration(void** iter); virtual void GetStats(StatsItems* stats); |