chromium/components/commerce/core/mock_account_checker.cc

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/commerce/core/mock_account_checker.h"
#include "components/prefs/pref_service.h"

namespace commerce {

MockAccountChecker::MockAccountChecker()
    :{}

MockAccountChecker::~MockAccountChecker() = default;

void MockAccountChecker::SetSignedIn(bool signed_in) {}

void MockAccountChecker::SetSyncingBookmarks(bool syncing) {}

void MockAccountChecker::SetAnonymizedUrlDataCollectionEnabled(bool enabled) {}

void MockAccountChecker::SetIsSubjectToParentalControls(
    bool subject_to_parental_controls) {}

void MockAccountChecker::SetCanUseModelExecutionFeatures(
    bool can_use_model_execution_features) {}

void MockAccountChecker::SetCountry(std::string country) {}

void MockAccountChecker::SetLocale(std::string locale) {}

void MockAccountChecker::SetPrefs(PrefService* prefs) {}

}  // namespace commerce