1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
// Copyright 2014 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_client.h"
#include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
namespace autofill {
TestAutofillClient::TestAutofillClient()
: token_service_(new FakeOAuth2TokenService()),
identity_provider_(new FakeIdentityProvider(token_service_.get())),
rappor_service_(new rappor::TestRapporServiceImpl()),
form_origin_(GURL("https://example.test")) {}
TestAutofillClient::~TestAutofillClient() {
}
PersonalDataManager* TestAutofillClient::GetPersonalDataManager() {
return nullptr;
}
scoped_refptr<AutofillWebDataService> TestAutofillClient::GetDatabase() {
return scoped_refptr<AutofillWebDataService>(nullptr);
}
PrefService* TestAutofillClient::GetPrefs() {
return prefs_.get();
}
syncer::SyncService* TestAutofillClient::GetSyncService() {
return nullptr;
}
IdentityProvider* TestAutofillClient::GetIdentityProvider() {
return identity_provider_.get();
}
rappor::RapporServiceImpl* TestAutofillClient::GetRapporServiceImpl() {
return rappor_service_.get();
}
void TestAutofillClient::ShowAutofillSettings() {
}
void TestAutofillClient::ShowUnmaskPrompt(
const CreditCard& card,
UnmaskCardReason reason,
base::WeakPtr<CardUnmaskDelegate> delegate) {
}
void TestAutofillClient::OnUnmaskVerificationResult(PaymentsRpcResult result) {
}
void TestAutofillClient::ConfirmSaveCreditCardLocally(
const CreditCard& card,
const base::Closure& callback) {
}
void TestAutofillClient::ConfirmSaveCreditCardToCloud(
const CreditCard& card,
std::unique_ptr<base::DictionaryValue> legal_message,
const base::Closure& callback) {
callback.Run();
}
void TestAutofillClient::ConfirmCreditCardFillAssist(
const CreditCard& card,
const base::Closure& callback) {
callback.Run();
}
void TestAutofillClient::LoadRiskData(
const base::Callback<void(const std::string&)>& callback) {
callback.Run("some risk data");
}
bool TestAutofillClient::HasCreditCardScanFeature() {
return false;
}
void TestAutofillClient::ScanCreditCard(
const CreditCardScanCallback& callback) {
}
void TestAutofillClient::ShowAutofillPopup(
const gfx::RectF& element_bounds,
base::i18n::TextDirection text_direction,
const std::vector<Suggestion>& suggestions,
base::WeakPtr<AutofillPopupDelegate> delegate) {
}
void TestAutofillClient::UpdateAutofillPopupDataListValues(
const std::vector<base::string16>& values,
const std::vector<base::string16>& labels) {
}
void TestAutofillClient::HideAutofillPopup() {
}
bool TestAutofillClient::IsAutocompleteEnabled() {
return true;
}
void TestAutofillClient::PropagateAutofillPredictions(
content::RenderFrameHost* rfh,
const std::vector<FormStructure*>& forms) {
}
void TestAutofillClient::DidFillOrPreviewField(
const base::string16& autofilled_value,
const base::string16& profile_full_name) {
}
void TestAutofillClient::OnFirstUserGestureObserved() {
}
bool TestAutofillClient::IsContextSecure() {
// Simplified secure context check for tests.
return form_origin_.SchemeIs("https");
}
bool TestAutofillClient::ShouldShowSigninPromo() {
return false;
}
void TestAutofillClient::StartSigninFlow() {}
void TestAutofillClient::ShowHttpNotSecureExplanation() {}
} // namespace autofill
|