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

Unified Diff: chrome/browser/browsing_data_remover.h

Issue 7995: Move Time, TimeDelta and TimeTicks into namespace base. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 2 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
Index: chrome/browser/browsing_data_remover.h
===================================================================
--- chrome/browser/browsing_data_remover.h (revision 3954)
+++ chrome/browser/browsing_data_remover.h (working copy)
@@ -36,7 +36,8 @@
// 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 @@
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 @@
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 @@
};
#endif // CHROME_BROWSER_BROWSING_DATA_REMOVER_H__
-

Powered by Google App Engine
This is Rietveld 408576698