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

Unified Diff: chrome/browser/webdata/web_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/webdata/web_database.h
===================================================================
--- chrome/browser/webdata/web_database.h (revision 3954)
+++ chrome/browser/webdata/web_database.h (working copy)
@@ -14,7 +14,7 @@
#include "chrome/common/sqlite_utils.h"
#include "skia/include/SkBitmap.h"
-class Time;
+class base::Time;
struct PasswordForm;
struct IE7PasswordInfo;
@@ -91,8 +91,8 @@
// Removes all logins created from |delete_begin| onwards (inclusive) and
// before |delete_end|. You may use a null Time value to do an unbounded
// delete in either direction.
- bool RemoveLoginsCreatedBetween(const Time delete_begin,
- const Time delete_end);
+ bool RemoveLoginsCreatedBetween(const base::Time delete_begin,
+ const base::Time delete_end);
// Loads a list of matching password forms into the specified vector |forms|.
// The list will contain all possibly relevant entries to the observed |form|,

Powered by Google App Engine
This is Rietveld 408576698