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

Unified Diff: chrome/browser/safe_browsing/protocol_manager.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/safe_browsing/protocol_manager.h
===================================================================
--- chrome/browser/safe_browsing/protocol_manager.h (revision 3954)
+++ chrome/browser/safe_browsing/protocol_manager.h (working copy)
@@ -74,7 +74,7 @@
void OnChunkInserted();
// The last time we received an update.
- Time last_update() const { return last_update_; }
+ base::Time last_update() const { return last_update_; }
private:
// Internal API for fetching information from the SafeBrowsing servers. The
@@ -196,10 +196,10 @@
std::string wrapped_key_;
// The last time we successfully received an update.
- Time last_update_;
+ base::Time last_update_;
// While in GetHash backoff, we can't make another GetHash until this time.
- Time next_gethash_time_;
+ base::Time next_gethash_time_;
// Current product version sent in each request.
std::string version_;

Powered by Google App Engine
This is Rietveld 408576698