| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "components/autofill/ios/browser/autofill_driver_ios.h" | 5 #include "components/autofill/ios/browser/autofill_driver_ios.h" |
| 6 | 6 |
| 7 #include "components/autofill/ios/browser/autofill_driver_ios_bridge.h" | 7 #include "components/autofill/ios/browser/autofill_driver_ios_bridge.h" |
| 8 #include "ios/web/public/browser_state.h" | 8 #include "ios/web/public/browser_state.h" |
| 9 #include "ios/web/public/web_state/web_state.h" | 9 #include "ios/web/public/web_state/web_state.h" |
| 10 #include "ios/web/public/web_thread.h" | 10 #include "ios/web/public/web_thread.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 | 75 |
| 76 void AutofillDriverIOS::SendAutofillTypePredictionsToRenderer( | 76 void AutofillDriverIOS::SendAutofillTypePredictionsToRenderer( |
| 77 const std::vector<FormStructure*>& forms) { | 77 const std::vector<FormStructure*>& forms) { |
| 78 [bridge_ sendAutofillTypePredictionsToRenderer:forms]; | 78 [bridge_ sendAutofillTypePredictionsToRenderer:forms]; |
| 79 } | 79 } |
| 80 | 80 |
| 81 void AutofillDriverIOS::RendererShouldAcceptDataListSuggestion( | 81 void AutofillDriverIOS::RendererShouldAcceptDataListSuggestion( |
| 82 const base::string16& value) { | 82 const base::string16& value) { |
| 83 } | 83 } |
| 84 | 84 |
| 85 void AutofillDriverIOS::DidInteractWithCreditCardForm() {} |
| 86 |
| 85 void AutofillDriverIOS::RendererShouldClearFilledForm() { | 87 void AutofillDriverIOS::RendererShouldClearFilledForm() { |
| 86 } | 88 } |
| 87 | 89 |
| 88 void AutofillDriverIOS::RendererShouldClearPreviewedForm() { | 90 void AutofillDriverIOS::RendererShouldClearPreviewedForm() { |
| 89 } | 91 } |
| 90 | 92 |
| 91 void AutofillDriverIOS::RendererShouldFillFieldWithValue( | 93 void AutofillDriverIOS::RendererShouldFillFieldWithValue( |
| 92 const base::string16& value) { | 94 const base::string16& value) { |
| 93 } | 95 } |
| 94 | 96 |
| 95 void AutofillDriverIOS::RendererShouldPreviewFieldWithValue( | 97 void AutofillDriverIOS::RendererShouldPreviewFieldWithValue( |
| 96 const base::string16& value) { | 98 const base::string16& value) { |
| 97 } | 99 } |
| 98 | 100 |
| 99 void AutofillDriverIOS::PopupHidden() { | 101 void AutofillDriverIOS::PopupHidden() { |
| 100 } | 102 } |
| 101 | 103 |
| 102 gfx::RectF AutofillDriverIOS::TransformBoundingBoxToViewportCoordinates( | 104 gfx::RectF AutofillDriverIOS::TransformBoundingBoxToViewportCoordinates( |
| 103 const gfx::RectF& bounding_box) { | 105 const gfx::RectF& bounding_box) { |
| 104 return bounding_box; | 106 return bounding_box; |
| 105 } | 107 } |
| 106 | 108 |
| 107 } // namespace autofill | 109 } // namespace autofill |
| OLD | NEW |