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

Unified Diff: chrome/browser/load_notification_details.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/load_notification_details.h
===================================================================
--- chrome/browser/load_notification_details.h (revision 3954)
+++ chrome/browser/load_notification_details.h (working copy)
@@ -19,7 +19,7 @@
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 @@
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

Powered by Google App Engine
This is Rietveld 408576698