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/load_notification_details.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/load_notification_details.h')
-rw-r--r-- | chrome/browser/load_notification_details.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/load_notification_details.h b/chrome/browser/load_notification_details.h index bb87436..6524399 100644 --- a/chrome/browser/load_notification_details.h +++ b/chrome/browser/load_notification_details.h @@ -19,7 +19,7 @@ class LoadNotificationDetails { public: LoadNotificationDetails(const GURL& url, PageTransition::Type origin, - TimeDelta load_time, + base::TimeDelta load_time, NavigationController* controller, int session_index) : url_(url), @@ -32,13 +32,13 @@ class LoadNotificationDetails { const GURL& url() const { return url_; } PageTransition::Type origin() const { return origin_; } - TimeDelta load_time() const { return load_time_; } + base::TimeDelta load_time() const { return load_time_; } int session_index() const { return session_index_; } NavigationController* controller() const { return controller_; } private: GURL url_; // the URL loaded - TimeDelta load_time_; // length of time the page load took + base::TimeDelta load_time_; // length of time the page load took int session_index_; // index of the load within the tab session PageTransition::Type origin_; // type of action that caused the load NavigationController* controller_; // tells us which tab the load was in |