summaryrefslogtreecommitdiffstats
path: root/chromium/components/autofill/core/browser/test_autofill_driver.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/autofill/core/browser/test_autofill_driver.cc')
-rw-r--r--chromium/components/autofill/core/browser/test_autofill_driver.cc70
1 files changed, 0 insertions, 70 deletions
diff --git a/chromium/components/autofill/core/browser/test_autofill_driver.cc b/chromium/components/autofill/core/browser/test_autofill_driver.cc
deleted file mode 100644
index bbeaa10e667..00000000000
--- a/chromium/components/autofill/core/browser/test_autofill_driver.cc
+++ /dev/null
@@ -1,70 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "components/autofill/core/browser/test_autofill_driver.h"
-
-#include "base/threading/sequenced_worker_pool.h"
-
-namespace autofill {
-
-TestAutofillDriver::TestAutofillDriver()
- : blocking_pool_(new base::SequencedWorkerPool(4, "TestAutofillDriver")),
- url_request_context_(NULL) {}
-
-TestAutofillDriver::~TestAutofillDriver() {
- blocking_pool_->Shutdown();
-}
-
-bool TestAutofillDriver::IsOffTheRecord() const {
- return false;
-}
-
-net::URLRequestContextGetter* TestAutofillDriver::GetURLRequestContext() {
- return url_request_context_;
-}
-
-base::SequencedWorkerPool* TestAutofillDriver::GetBlockingPool() {
- return blocking_pool_;
-}
-
-bool TestAutofillDriver::RendererIsAvailable() {
- return true;
-}
-
-void TestAutofillDriver::SetRendererActionOnFormDataReception(
- RendererFormDataAction action) {
-}
-
-void TestAutofillDriver::SendFormDataToRenderer(int query_id,
- const FormData& form_data) {
-}
-
-void TestAutofillDriver::SendAutofillTypePredictionsToRenderer(
- const std::vector<FormStructure*>& forms) {
-}
-
-void TestAutofillDriver::RendererShouldAcceptDataListSuggestion(
- const base::string16& value) {
-}
-
-void TestAutofillDriver::RendererShouldAcceptPasswordAutofillSuggestion(
- const base::string16& username) {
-}
-
-void TestAutofillDriver::RendererShouldClearFilledForm() {
-}
-
-void TestAutofillDriver::RendererShouldClearPreviewedForm() {
-}
-
-void TestAutofillDriver::SetURLRequestContext(
- net::URLRequestContextGetter* url_request_context) {
- url_request_context_ = url_request_context;
-}
-
-void TestAutofillDriver::RendererShouldSetNodeText(
- const base::string16& value) {
-}
-
-} // namespace autofill