Chromium Code Reviews

Unified Diff: chrome/browser/template_url.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.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/template_url.h
===================================================================
--- chrome/browser/template_url.h (revision 3954)
+++ chrome/browser/template_url.h (working copy)
@@ -255,7 +255,7 @@
show_in_default_list_(false),
safe_for_autoreplace_(false),
id_(0),
- date_created_(Time::Now()),
+ date_created_(base::Time::Now()),
usage_count_(0),
prepopulate_id_(0) {}
~TemplateURL() {}
@@ -368,8 +368,8 @@
//
// NOTE: this may be 0, which indicates the keyword was created before we
// started tracking creation time.
- void set_date_created(Time time) { date_created_ = time; }
- Time date_created() const { return date_created_; }
+ void set_date_created(base::Time time) { date_created_ = time; }
+ base::Time date_created() const { return date_created_; }
// Number of times this keyword has been explicitly used to load a URL. We
// don't increment this for uses as the "default search engine" since that's
@@ -425,7 +425,7 @@
// List of supported input encodings.
std::vector<std::string> input_encodings_;
IDType id_;
- Time date_created_;
+ base::Time date_created_;
int usage_count_;
int prepopulate_id_;

Powered by Google App Engine