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

Unified Diff: chrome/browser/history_model.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/history_model.h
===================================================================
--- chrome/browser/history_model.h (revision 3954)
+++ chrome/browser/history_model.h (working copy)
@@ -22,7 +22,7 @@
// BaseHistoryModel methods (see BaseHistoryModel for description).
virtual int GetItemCount();
- virtual Time GetVisitTime(int index);
+ virtual base::Time GetVisitTime(int index);
virtual const std::wstring& GetTitle(int index);
virtual const GURL& GetURL(int index);
virtual history::URLID GetURLID(int index);
@@ -83,7 +83,7 @@
int search_depth_;
// The time that the current query was started.
- Time search_start_;
+ base::Time search_start_;
DISALLOW_EVIL_CONSTRUCTORS(HistoryModel);
};

Powered by Google App Engine
This is Rietveld 408576698