| Index: components/password_manager/core/browser/login_database.h
|
| diff --git a/components/password_manager/core/browser/login_database.h b/components/password_manager/core/browser/login_database.h
|
| index d348c26f13818c370614c9b57b75cd3f0601bf6e..922041545bba2323561fa12638388e82b1a3db05 100644
|
| --- a/components/password_manager/core/browser/login_database.h
|
| +++ b/components/password_manager/core/browser/login_database.h
|
| @@ -25,12 +25,12 @@ extern const int kCurrentVersionNumber;
|
| // the login information.
|
| class LoginDatabase {
|
| public:
|
| - LoginDatabase();
|
| + LoginDatabase(const base::FilePath& db_path);
|
| virtual ~LoginDatabase();
|
|
|
| - // Initialize the database with an sqlite file at the given path.
|
| - // If false is returned, no other method should be called.
|
| - bool Init(const base::FilePath& db_path);
|
| + // Actually creates/opens the database. If false is returned, no other method
|
| + // should be called.
|
| + virtual bool Init();
|
|
|
| // Reports usage metrics to UMA.
|
| void ReportMetrics(const std::string& sync_username,
|
|
|