| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/password_generation_agent.h" | 5 #import "ios/chrome/browser/passwords/password_generation_agent.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #import "base/ios/weak_nsobject.h" | 9 #import "base/ios/weak_nsobject.h" |
| 8 #include "base/mac/foundation_util.h" | 10 #include "base/mac/foundation_util.h" |
| 9 #include "base/mac/scoped_block.h" | 11 #include "base/mac/scoped_block.h" |
| 10 #include "base/mac/scoped_nsobject.h" | 12 #include "base/mac/scoped_nsobject.h" |
| 11 #include "base/strings/sys_string_conversions.h" | 13 #include "base/strings/sys_string_conversions.h" |
| 12 #include "base/strings/utf_string_conversions.h" | 14 #include "base/strings/utf_string_conversions.h" |
| 13 #include "components/autofill/core/browser/password_generator.h" | 15 #include "components/autofill/core/browser/password_generator.h" |
| 14 #include "components/autofill/core/common/form_data.h" | 16 #include "components/autofill/core/common/form_data.h" |
| 15 #include "components/autofill/core/common/password_form.h" | 17 #include "components/autofill/core/common/password_form.h" |
| 16 #include "components/autofill/core/common/password_generation_util.h" | 18 #include "components/autofill/core/common/password_generation_util.h" |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 DCHECK(_accessoryViewReadyCompletion); | 459 DCHECK(_accessoryViewReadyCompletion); |
| 458 _accessoryViewReadyCompletion.get()([self currentAccessoryView], self); | 460 _accessoryViewReadyCompletion.get()([self currentAccessoryView], self); |
| 459 } | 461 } |
| 460 | 462 |
| 461 - (BOOL)getLogKeyboardAccessoryMetrics { | 463 - (BOOL)getLogKeyboardAccessoryMetrics { |
| 462 // Only store metrics for regular Autofill, not passwords. | 464 // Only store metrics for regular Autofill, not passwords. |
| 463 return NO; | 465 return NO; |
| 464 } | 466 } |
| 465 | 467 |
| 466 @end | 468 @end |
| OLD | NEW |