Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / components / autofill / core / browser / test_autofill_driver.cc
blob3eaacd576c868844d8d4a9dd3829b9a0f03017f7
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"
10 namespace autofill {
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 {
22 return false;
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() {
34 return true;
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