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 /chrome/browser/browsing_data_remover.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 'chrome/browser/browsing_data_remover.h')
-rw-r--r-- | chrome/browser/browsing_data_remover.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/browsing_data_remover.h b/chrome/browser/browsing_data_remover.h index 2e2b2a3..81819f0 100644 --- a/chrome/browser/browsing_data_remover.h +++ b/chrome/browser/browsing_data_remover.h @@ -36,7 +36,8 @@ class BrowsingDataRemover : public NotificationObserver { // Creates a BrowsingDataRemover to remove browser data from the specified // profile in the specified time range. Use Remove to initiate the removal. - BrowsingDataRemover(Profile* profile, Time delete_begin, Time delete_end); + BrowsingDataRemover(Profile* profile, base::Time delete_begin, + base::Time delete_end); ~BrowsingDataRemover(); // Removes the specified items related to browsing. @@ -64,8 +65,8 @@ class BrowsingDataRemover : public NotificationObserver { void ClearedCache(); // Invoked on the IO thread to delete from the cache. - void ClearCacheOnIOThread(Time delete_begin, - Time delete_end, + void ClearCacheOnIOThread(base::Time delete_begin, + base::Time delete_end, MessageLoop* ui_loop); // Returns true if we're all done. @@ -78,10 +79,10 @@ class BrowsingDataRemover : public NotificationObserver { Profile* profile_; // Start time to delete from. - const Time delete_begin_; + const base::Time delete_begin_; // End time to delete to. - const Time delete_end_; + const base::Time delete_end_; // True if Remove has been invoked. bool removing_; @@ -104,4 +105,3 @@ class BrowsingDataRemover : public NotificationObserver { }; #endif // CHROME_BROWSER_BROWSING_DATA_REMOVER_H__ - |