| 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/threading/sequenced_worker_pool.h" | 7 #include "base/threading/sequenced_worker_pool.h" |
| 8 | 8 |
| 9 namespace autofill { | 9 namespace autofill { |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 } | 42 } |
| 43 | 43 |
| 44 void TestAutofillDriver::SendFormDataToRenderer(int query_id, | 44 void TestAutofillDriver::SendFormDataToRenderer(int query_id, |
| 45 const FormData& form_data) { | 45 const FormData& form_data) { |
| 46 } | 46 } |
| 47 | 47 |
| 48 void TestAutofillDriver::SendAutofillTypePredictionsToRenderer( | 48 void TestAutofillDriver::SendAutofillTypePredictionsToRenderer( |
| 49 const std::vector<FormStructure*>& forms) { | 49 const std::vector<FormStructure*>& forms) { |
| 50 } | 50 } |
| 51 | 51 |
| 52 void TestAutofillDriver::RemovePasswordAutofillSuggestion( |
| 53 const PasswordForm& password_form) { |
| 54 } |
| 55 |
| 52 void TestAutofillDriver::RendererShouldAcceptDataListSuggestion( | 56 void TestAutofillDriver::RendererShouldAcceptDataListSuggestion( |
| 53 const base::string16& value) { | 57 const base::string16& value) { |
| 54 } | 58 } |
| 55 | 59 |
| 56 void TestAutofillDriver::RendererShouldAcceptPasswordAutofillSuggestion( | 60 void TestAutofillDriver::RendererShouldAcceptPasswordAutofillSuggestion( |
| 57 const base::string16& username) { | 61 const base::string16& username) { |
| 58 } | 62 } |
| 59 | 63 |
| 60 void TestAutofillDriver::RendererShouldClearFilledForm() { | 64 void TestAutofillDriver::RendererShouldClearFilledForm() { |
| 61 } | 65 } |
| 62 | 66 |
| 63 void TestAutofillDriver::RendererShouldClearPreviewedForm() { | 67 void TestAutofillDriver::RendererShouldClearPreviewedForm() { |
| 64 } | 68 } |
| 65 | 69 |
| 66 void TestAutofillDriver::SetURLRequestContext( | 70 void TestAutofillDriver::SetURLRequestContext( |
| 67 net::URLRequestContextGetter* url_request_context) { | 71 net::URLRequestContextGetter* url_request_context) { |
| 68 url_request_context_ = url_request_context; | 72 url_request_context_ = url_request_context; |
| 69 } | 73 } |
| 70 | 74 |
| 71 void TestAutofillDriver::RendererShouldSetNodeText( | 75 void TestAutofillDriver::RendererShouldSetNodeText( |
| 72 const base::string16& value) { | 76 const base::string16& value) { |
| 73 } | 77 } |
| 74 | 78 |
| 75 } // namespace autofill | 79 } // namespace autofill |
| OLD | NEW |