From e1acf6f902e50222baf99bfb492ecc38a1604975 Mon Sep 17 00:00:00 2001 From: "dsh@google.com" Date: Mon, 27 Oct 2008 20:43:33 +0000 Subject: 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 --- chrome/browser/profile.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome/browser/profile.h') diff --git a/chrome/browser/profile.h b/chrome/browser/profile.h index 2edc40c..27e5fcf 100644 --- a/chrome/browser/profile.h +++ b/chrome/browser/profile.h @@ -187,7 +187,7 @@ class Profile { // 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 @@ class ProfileImpl : public Profile { 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 @@ class ProfileImpl : public Profile { scoped_ptr off_the_record_profile_; // See GetStartTime for details. - Time start_time_; + base::Time start_time_; scoped_ptr tab_restore_service_; -- cgit v1.1