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
3 // found in the LICENSE file.
5 #include "components/autofill/core/browser/test_autofill_driver.h"
7 #include "base/test/sequenced_worker_pool_owner.h"
8 #include "base/threading/sequenced_worker_pool.h"
12 TestAutofillDriver::TestAutofillDriver()
13 : blocking_pool_owner_(
14 new base::SequencedWorkerPoolOwner(4, "TestAutofillDriver")),
15 url_request_context_(NULL
) {}
17 TestAutofillDriver::~TestAutofillDriver() {
18 blocking_pool_owner_
->pool()->Shutdown();
21 bool TestAutofillDriver::IsOffTheRecord() const {
25 net::URLRequestContextGetter
* TestAutofillDriver::GetURLRequestContext() {
26 return url_request_context_
;
29 base::SequencedWorkerPool
* TestAutofillDriver::GetBlockingPool() {
30 return blocking_pool_owner_
->pool().get();
33 bool TestAutofillDriver::RendererIsAvailable() {
37 void TestAutofillDriver::SendFormDataToRenderer(int query_id
,
38 RendererFormDataAction action
,
39 const FormData
& form_data
) {
42 void TestAutofillDriver::PropagateAutofillPredictions(
43 const std::vector
<FormStructure
*>& forms
) {
46 void TestAutofillDriver::SendAutofillTypePredictionsToRenderer(
47 const std::vector
<FormStructure
*>& forms
) {
50 void TestAutofillDriver::RendererShouldAcceptDataListSuggestion(
51 const base::string16
& value
) {
54 void TestAutofillDriver::RendererShouldClearFilledForm() {
57 void TestAutofillDriver::RendererShouldClearPreviewedForm() {
60 void TestAutofillDriver::SetURLRequestContext(
61 net::URLRequestContextGetter
* url_request_context
) {
62 url_request_context_
= url_request_context
;
65 void TestAutofillDriver::RendererShouldFillFieldWithValue(
66 const base::string16
& value
) {
69 void TestAutofillDriver::RendererShouldPreviewFieldWithValue(
70 const base::string16
& value
) {
73 void TestAutofillDriver::PopupHidden() {
76 } // namespace autofill