OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PASSWORD_STORE_WIN_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ |
6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
10 #include "chrome/browser/password_manager/password_store_default.h" | 9 #include "chrome/browser/password_manager/password_store_default.h" |
11 | 10 |
12 class LoginDatabase; | 11 class LoginDatabase; |
13 class Profile; | 12 class Profile; |
14 class WebDataService; | 13 class WebDataService; |
15 | 14 |
16 namespace webkit { | 15 namespace webkit { |
17 namespace forms { | 16 namespace forms { |
(...skipping 30 matching lines...) Expand all Loading... |
48 // Overridden so that we can save the form for later use. | 47 // Overridden so that we can save the form for later use. |
49 virtual void GetLoginsImpl(GetLoginsRequest* request, | 48 virtual void GetLoginsImpl(GetLoginsRequest* request, |
50 const webkit::forms::PasswordForm& form) OVERRIDE; | 49 const webkit::forms::PasswordForm& form) OVERRIDE; |
51 | 50 |
52 scoped_ptr<DBHandler> db_handler_; | 51 scoped_ptr<DBHandler> db_handler_; |
53 | 52 |
54 DISALLOW_COPY_AND_ASSIGN(PasswordStoreWin); | 53 DISALLOW_COPY_AND_ASSIGN(PasswordStoreWin); |
55 }; | 54 }; |
56 | 55 |
57 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ | 56 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ |
OLD | NEW |