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

Side by Side Diff: chrome/browser/password_manager/login_database.h

Issue 7353026: Move app/sql/* files to sql/ directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 9 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "app/sql/connection.h"
13 #include "app/sql/meta_table.h"
14 #include "base/file_path.h" 12 #include "base/file_path.h"
15 #include "base/string16.h" 13 #include "base/string16.h"
14 #include "sql/connection.h"
15 #include "sql/meta_table.h"
16 #include "webkit/glue/password_form.h" 16 #include "webkit/glue/password_form.h"
17 17
18 // Interface to the database storage of login information, intended as a helper 18 // Interface to the database storage of login information, intended as a helper
19 // for PasswordStore on platforms that need internal storage of some or all of 19 // for PasswordStore on platforms that need internal storage of some or all of
20 // the login information. 20 // the login information.
21 class LoginDatabase { 21 class LoginDatabase {
22 public: 22 public:
23 LoginDatabase(); 23 LoginDatabase();
24 virtual ~LoginDatabase(); 24 virtual ~LoginDatabase();
25 25
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 bool blacklisted, std::vector<webkit_glue::PasswordForm*>* forms) const; 96 bool blacklisted, std::vector<webkit_glue::PasswordForm*>* forms) const;
97 97
98 FilePath db_path_; 98 FilePath db_path_;
99 mutable sql::Connection db_; 99 mutable sql::Connection db_;
100 sql::MetaTable meta_table_; 100 sql::MetaTable meta_table_;
101 101
102 DISALLOW_COPY_AND_ASSIGN(LoginDatabase); 102 DISALLOW_COPY_AND_ASSIGN(LoginDatabase);
103 }; 103 };
104 104
105 #endif // CHROME_BROWSER_PASSWORD_MANAGER_LOGIN_DATABASE_H_ 105 #endif // CHROME_BROWSER_PASSWORD_MANAGER_LOGIN_DATABASE_H_
OLDNEW
« no previous file with comments | « chrome/browser/net/sqlite_persistent_cookie_store.cc ('k') | chrome/browser/password_manager/login_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698