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

Unified Diff: chrome/browser/profile.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/profile.h
===================================================================
--- chrome/browser/profile.h (revision 3954)
+++ chrome/browser/profile.h (working copy)
@@ -187,7 +187,7 @@
// was created, rather it is the time the user started chrome and logged into
// this profile. For the single profile case, this corresponds to the time
// the user started chrome.
- virtual Time GetStartTime() const = 0;
+ virtual base::Time GetStartTime() const = 0;
// Returns the TabRestoreService. This returns NULL when off the record.
virtual TabRestoreService* GetTabRestoreService() = 0;
@@ -253,7 +253,7 @@
virtual bool DidLastSessionExitCleanly();
virtual BookmarkModel* GetBookmarkModel();
virtual bool IsSameProfile(Profile* profile);
- virtual Time GetStartTime() const;
+ virtual base::Time GetStartTime() const;
virtual TabRestoreService* GetTabRestoreService();
virtual void ResetTabRestoreService();
virtual void InitializeSpellChecker();
@@ -308,7 +308,7 @@
scoped_ptr<OffTheRecordProfileImpl> off_the_record_profile_;
// See GetStartTime for details.
- Time start_time_;
+ base::Time start_time_;
scoped_ptr<TabRestoreService> tab_restore_service_;

Powered by Google App Engine
This is Rietveld 408576698