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/autofill/form_suggestion_controller.h" | 5 #import "ios/chrome/browser/autofill/form_suggestion_controller.h" |
6 | 6 |
7 #include "base/ios/ios_util.h" | 7 #include "base/ios/ios_util.h" |
8 #include "base/ios/weak_nsobject.h" | 8 #include "base/ios/weak_nsobject.h" |
9 #include "base/mac/foundation_util.h" | 9 #include "base/mac/foundation_util.h" |
10 #include "base/mac/scoped_block.h" | 10 #include "base/mac/scoped_block.h" |
11 #include "base/mac/scoped_nsobject.h" | 11 #include "base/mac/scoped_nsobject.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/strings/sys_string_conversions.h" | 13 #include "base/strings/sys_string_conversions.h" |
14 #include "base/strings/utf_string_conversions.h" | 14 #include "base/strings/utf_string_conversions.h" |
| 15 #include "components/autofill/core/browser/autofill_field_trial_ios.h" |
15 #include "components/autofill/core/browser/autofill_popup_delegate.h" | 16 #include "components/autofill/core/browser/autofill_popup_delegate.h" |
16 #include "components/autofill/ios/browser/autofill_field_trial_ios.h" | |
17 #import "components/autofill/ios/browser/form_suggestion.h" | 17 #import "components/autofill/ios/browser/form_suggestion.h" |
18 #import "ios/chrome/browser/autofill/form_input_accessory_view_controller.h" | 18 #import "ios/chrome/browser/autofill/form_input_accessory_view_controller.h" |
19 #import "ios/chrome/browser/autofill/form_suggestion_provider.h" | 19 #import "ios/chrome/browser/autofill/form_suggestion_provider.h" |
20 #import "ios/chrome/browser/autofill/form_suggestion_view.h" | 20 #import "ios/chrome/browser/autofill/form_suggestion_view.h" |
21 #import "ios/chrome/browser/passwords/password_generation_utils.h" | 21 #import "ios/chrome/browser/passwords/password_generation_utils.h" |
22 #include "ios/chrome/browser/ui/ui_util.h" | 22 #include "ios/chrome/browser/ui/ui_util.h" |
23 #include "ios/web/public/url_scheme_util.h" | 23 #include "ios/web/public/url_scheme_util.h" |
24 #import "ios/web/public/web_state/crw_web_view_proxy.h" | 24 #import "ios/web/public/web_state/crw_web_view_proxy.h" |
25 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h" | 25 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h" |
26 #import "ios/web/public/web_state/web_state.h" | 26 #import "ios/web/public/web_state/web_state.h" |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 | 363 |
364 - (void)resizeAccessoryView { | 364 - (void)resizeAccessoryView { |
365 [self updateKeyboard:_suggestionState.get()]; | 365 [self updateKeyboard:_suggestionState.get()]; |
366 } | 366 } |
367 | 367 |
368 - (BOOL)getLogKeyboardAccessoryMetrics { | 368 - (BOOL)getLogKeyboardAccessoryMetrics { |
369 return YES; | 369 return YES; |
370 } | 370 } |
371 | 371 |
372 @end | 372 @end |
OLD | NEW |