| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #import "ios/chrome/browser/passwords/ios_chrome_password_manager_driver.h" | 5 #import "ios/chrome/browser/passwords/ios_chrome_password_manager_driver.h" |
| 6 | 6 |
| 7 #include "base/strings/string16.h" | 7 #include "base/strings/string16.h" |
| 8 #include "components/autofill/core/common/password_form.h" | 8 #include "components/autofill/core/common/password_form.h" |
| 9 #include "components/autofill/core/common/password_form_fill_data.h" | 9 #include "components/autofill/core/common/password_form_fill_data.h" |
| 10 #include "components/password_manager/core/browser/password_generation_manager.h
" | 10 #include "components/password_manager/core/browser/password_generation_manager.h
" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 PasswordAutofillManager* | 75 PasswordAutofillManager* |
| 76 IOSChromePasswordManagerDriver::GetPasswordAutofillManager() { | 76 IOSChromePasswordManagerDriver::GetPasswordAutofillManager() { |
| 77 // TODO(crbug.com/341877): Use PasswordAutofillManager to implement password | 77 // TODO(crbug.com/341877): Use PasswordAutofillManager to implement password |
| 78 // autofill on iOS. | 78 // autofill on iOS. |
| 79 return nullptr; | 79 return nullptr; |
| 80 } | 80 } |
| 81 | 81 |
| 82 void IOSChromePasswordManagerDriver::ForceSavePassword() { | 82 void IOSChromePasswordManagerDriver::ForceSavePassword() { |
| 83 NOTIMPLEMENTED(); | 83 NOTIMPLEMENTED(); |
| 84 } | 84 } |
| 85 |
| 86 autofill::AutofillDriver* IOSChromePasswordManagerDriver::GetAutofillDriver() { |
| 87 NOTIMPLEMENTED(); |
| 88 return nullptr; |
| 89 } |
| OLD | NEW |