| 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/core/browser/test_autofill_driver.h" | 5 #include "components/autofill/core/browser/test_autofill_driver.h" |
| 6 | 6 |
| 7 #include "base/test/sequenced_worker_pool_owner.h" | 7 #include "base/test/sequenced_worker_pool_owner.h" |
| 8 #include "base/threading/sequenced_worker_pool.h" | 8 #include "base/threading/sequenced_worker_pool.h" |
| 9 | 9 |
| 10 namespace autofill { | 10 namespace autofill { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 } | 35 } |
| 36 | 36 |
| 37 void TestAutofillDriver::SendFormDataToRenderer(int query_id, | 37 void TestAutofillDriver::SendFormDataToRenderer(int query_id, |
| 38 RendererFormDataAction action, | 38 RendererFormDataAction action, |
| 39 const FormData& form_data) { | 39 const FormData& form_data) { |
| 40 } | 40 } |
| 41 | 41 |
| 42 void TestAutofillDriver::PingRenderer() { | 42 void TestAutofillDriver::PingRenderer() { |
| 43 } | 43 } |
| 44 | 44 |
| 45 void TestAutofillDriver::DetectAccountCreationForms( | 45 void TestAutofillDriver::PropagateAutofillPredictions( |
| 46 const std::vector<autofill::FormStructure*>& forms) { | 46 const std::vector<autofill::FormStructure*>& forms) { |
| 47 } | 47 } |
| 48 | 48 |
| 49 void TestAutofillDriver::SendAutofillTypePredictionsToRenderer( | 49 void TestAutofillDriver::SendAutofillTypePredictionsToRenderer( |
| 50 const std::vector<FormStructure*>& forms) { | 50 const std::vector<FormStructure*>& forms) { |
| 51 } | 51 } |
| 52 | 52 |
| 53 void TestAutofillDriver::RendererShouldAcceptDataListSuggestion( | 53 void TestAutofillDriver::RendererShouldAcceptDataListSuggestion( |
| 54 const base::string16& value) { | 54 const base::string16& value) { |
| 55 } | 55 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 70 } | 70 } |
| 71 | 71 |
| 72 void TestAutofillDriver::RendererShouldPreviewFieldWithValue( | 72 void TestAutofillDriver::RendererShouldPreviewFieldWithValue( |
| 73 const base::string16& value) { | 73 const base::string16& value) { |
| 74 } | 74 } |
| 75 | 75 |
| 76 void TestAutofillDriver::PopupHidden() { | 76 void TestAutofillDriver::PopupHidden() { |
| 77 } | 77 } |
| 78 | 78 |
| 79 } // namespace autofill | 79 } // namespace autofill |
| OLD | NEW |