diff options
author | dsh@google.com <dsh@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-27 20:43:33 +0000 |
---|---|---|
committer | dsh@google.com <dsh@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-27 20:43:33 +0000 |
commit | e1acf6f902e50222baf99bfb492ecc38a1604975 (patch) | |
tree | 503d45705b14be7e2f1ed86c71d6064abbf90fbe /chrome/browser/template_url_model.h | |
parent | a2f5993e1ce940e8a8eec900abaeed02e2eee09b (diff) | |
download | chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.zip chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.tar.gz chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.tar.bz2 |
Move Time, TimeDelta and TimeTicks into namespace base.
Review URL: http://codereview.chromium.org/7995
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4022 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/template_url_model.h')
-rw-r--r-- | chrome/browser/template_url_model.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/template_url_model.h b/chrome/browser/template_url_model.h index 8fd65a7..6b9569b 100644 --- a/chrome/browser/template_url_model.h +++ b/chrome/browser/template_url_model.h @@ -123,7 +123,7 @@ class TemplateURLModel : public WebDataServiceConsumer, // Removes all auto-generated keywords that were created in the specified // range. - void RemoveAutoGeneratedBetween(Time created_after, Time created_before); + void RemoveAutoGeneratedBetween(base::Time created_after, base::Time created_before); // Replaces existing_turl with new_turl. new_turl is given the same ID as // existing_turl. If existing_turl was the default, new_turl is made the @@ -134,7 +134,7 @@ class TemplateURLModel : public WebDataServiceConsumer, // Removes all auto-generated keywords that were created on or after the // date passed in. - void RemoveAutoGeneratedSince(Time created_after); + void RemoveAutoGeneratedSince(base::Time created_after); // Returns the set of URLs describing the keywords. The elements are owned // by TemplateURLModel and should not be deleted. |