OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_LOGIN_DATABASE_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_LOGIN_DATABASE_H_ |
6 #define CHROME_BROWSER_PASSWORD_MANAGER_LOGIN_DATABASE_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_LOGIN_DATABASE_H_ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 #include <vector> | 9 #include <vector> |
11 | 10 |
12 #include "base/file_path.h" | 11 #include "base/file_path.h" |
13 #include "base/string16.h" | 12 #include "base/string16.h" |
14 #include "sql/connection.h" | 13 #include "sql/connection.h" |
15 #include "sql/meta_table.h" | 14 #include "sql/meta_table.h" |
16 #include "webkit/forms/password_form.h" | 15 #include "webkit/forms/password_form.h" |
17 | 16 |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 bool blacklisted, std::vector<webkit::forms::PasswordForm*>* forms) const; | 96 bool blacklisted, std::vector<webkit::forms::PasswordForm*>* forms) const; |
98 | 97 |
99 FilePath db_path_; | 98 FilePath db_path_; |
100 mutable sql::Connection db_; | 99 mutable sql::Connection db_; |
101 sql::MetaTable meta_table_; | 100 sql::MetaTable meta_table_; |
102 | 101 |
103 DISALLOW_COPY_AND_ASSIGN(LoginDatabase); | 102 DISALLOW_COPY_AND_ASSIGN(LoginDatabase); |
104 }; | 103 }; |
105 | 104 |
106 #endif // CHROME_BROWSER_PASSWORD_MANAGER_LOGIN_DATABASE_H_ | 105 #endif // CHROME_BROWSER_PASSWORD_MANAGER_LOGIN_DATABASE_H_ |
OLD | NEW |