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

Unified Diff: chrome/browser/webdata/web_data_service.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/webdata/web_data_service.h
===================================================================
--- chrome/browser/webdata/web_data_service.h (revision 3954)
+++ chrome/browser/webdata/web_data_service.h (working copy)
@@ -314,11 +314,11 @@
void RemoveIE7Login(const IE7PasswordInfo& info);
// Removes all logins created in the specified daterange
- void RemoveLoginsCreatedBetween(const Time delete_begin,
- const Time delete_end);
+ void RemoveLoginsCreatedBetween(const base::Time delete_begin,
+ const base::Time delete_end);
// Removes all logins created on or after the date passed in.
- void RemoveLoginsCreatedAfter(const Time delete_begin);
+ void RemoveLoginsCreatedAfter(const base::Time delete_begin);
// Gets a list of password forms that match |form|.
// |consumer| will be notified when the request is done. The result is of
@@ -407,7 +407,8 @@
void UpdateLoginImpl(GenericRequest<PasswordForm>* request);
void RemoveLoginImpl(GenericRequest<PasswordForm>* request);
void RemoveIE7LoginImpl(GenericRequest<IE7PasswordInfo>* request);
- void RemoveLoginsCreatedBetweenImpl(GenericRequest2<Time, Time>* request);
+ void RemoveLoginsCreatedBetweenImpl(
+ GenericRequest2<base::Time, base::Time>* request);
void GetLoginsImpl(GenericRequest<PasswordForm>* request);
void GetIE7LoginImpl(GenericRequest<IE7PasswordInfo>* request);
void GetAllAutofillableLoginsImpl(WebDataRequest* request);
@@ -481,4 +482,3 @@
};
#endif // CHROME_BROWSER_WEBDATA_WEB_DATA_SERVICE_H__
-

Powered by Google App Engine
This is Rietveld 408576698