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 #include "chrome/browser/password_manager/password_store_win.h" | 5 #include "chrome/browser/password_manager/password_store_win.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/strings/string_util.h" | 12 #include "base/strings/string_util.h" |
13 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
14 #include "chrome/browser/webdata/web_data_service.h" | 14 #include "chrome/browser/webdata/web_data_service.h" |
15 #include "components/encryptor/ie7_password_win.h" | 15 #include "components/os_crypt/ie7_password_win.h" |
16 #include "components/password_manager/core/browser/password_manager.h" | 16 #include "components/password_manager/core/browser/password_manager.h" |
17 #include "content/public/browser/browser_thread.h" | 17 #include "content/public/browser/browser_thread.h" |
18 | 18 |
19 using autofill::PasswordForm; | 19 using autofill::PasswordForm; |
20 using content::BrowserThread; | 20 using content::BrowserThread; |
21 | 21 |
22 // Handles requests to WebDataService. | 22 // Handles requests to WebDataService. |
23 class PasswordStoreWin::DBHandler : public WebDataServiceConsumer { | 23 class PasswordStoreWin::DBHandler : public WebDataServiceConsumer { |
24 public: | 24 public: |
25 DBHandler(WebDataService* web_data_service, | 25 DBHandler(WebDataService* web_data_service, |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 | 204 |
205 void PasswordStoreWin::GetLoginsImpl( | 205 void PasswordStoreWin::GetLoginsImpl( |
206 const PasswordForm& form, | 206 const PasswordForm& form, |
207 AuthorizationPromptPolicy prompt_policy, | 207 AuthorizationPromptPolicy prompt_policy, |
208 const ConsumerCallbackRunner& callback_runner) { | 208 const ConsumerCallbackRunner& callback_runner) { |
209 ConsumerCallbackRunner get_ie7_login = | 209 ConsumerCallbackRunner get_ie7_login = |
210 base::Bind(&PasswordStoreWin::GetIE7LoginIfNecessary, | 210 base::Bind(&PasswordStoreWin::GetIE7LoginIfNecessary, |
211 this, form, callback_runner); | 211 this, form, callback_runner); |
212 PasswordStoreDefault::GetLoginsImpl(form, prompt_policy, get_ie7_login); | 212 PasswordStoreDefault::GetLoginsImpl(form, prompt_policy, get_ie7_login); |
213 } | 213 } |
OLD | NEW |