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/webdata_services/web_data_service_test_util.h"
7 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
9 using autofill::AutofillWebDataService
;
11 MockWebDataServiceWrapperBase::MockWebDataServiceWrapperBase() {
14 MockWebDataServiceWrapperBase::~MockWebDataServiceWrapperBase() {
17 void MockWebDataServiceWrapperBase::Shutdown() {
20 // TODO(caitkp): This won't scale well. As we get more WebData subclasses, we
21 // will probably need a better way to create these mocks rather than passing
22 // all the webdatas in.
23 MockWebDataServiceWrapper::MockWebDataServiceWrapper(
24 scoped_refptr
<AutofillWebDataService
> fake_autofill
,
25 scoped_refptr
<TokenWebData
> fake_token
)
26 : fake_autofill_web_data_(fake_autofill
), fake_token_web_data_(fake_token
) {
29 MockWebDataServiceWrapper::~MockWebDataServiceWrapper() {
32 scoped_refptr
<AutofillWebDataService
>
33 MockWebDataServiceWrapper::GetAutofillWebData() {
34 return fake_autofill_web_data_
;
37 scoped_refptr
<TokenWebData
> MockWebDataServiceWrapper::GetTokenWebData() {
38 return fake_token_web_data_
;