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

Unified Diff: chrome/browser/history/visitsegment_database.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/visitsegment_database.h
===================================================================
--- chrome/browser/history/visitsegment_database.h (revision 3954)
+++ chrome/browser/history/visitsegment_database.h (working copy)
@@ -45,17 +45,17 @@
// Increase the segment visit count by the provided amount. Return true on
// success.
- bool IncreaseSegmentVisitCount(SegmentID segment_id, const Time& ts,
+ bool IncreaseSegmentVisitCount(SegmentID segment_id, const base::Time& ts,
int amount);
// Compute the segment usage since |from_time| using the provided aggregator.
// A PageUsageData is added in |result| for the nine highest-scored segments.
- void QuerySegmentUsage(const Time& from_time,
+ void QuerySegmentUsage(const base::Time& from_time,
std::vector<PageUsageData*>* result);
// Delete all the segment usage data which is older than the provided time
// stamp.
- void DeleteSegmentData(const Time& older_than);
+ void DeleteSegmentData(const base::Time& older_than);
// Change the presentation id for the segment identified by |segment_id|
void SetSegmentPresentationIndex(SegmentID segment_id, int index);

Powered by Google App Engine
This is Rietveld 408576698