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