chromium/components/payments/content/mock_android_app_communication.h

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

#ifndef COMPONENTS_PAYMENTS_CONTENT_MOCK_ANDROID_APP_COMMUNICATION_H_
#define COMPONENTS_PAYMENTS_CONTENT_MOCK_ANDROID_APP_COMMUNICATION_H_

#include "base/functional/callback_helpers.h"
#include "base/memory/weak_ptr.h"
#include "components/payments/content/android_app_communication.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace content {
class BrowserContext;
}

namespace payments {

class MockAndroidAppCommunication : public AndroidAppCommunication {};

}  // namespace payments

#endif  // COMPONENTS_PAYMENTS_CONTENT_MOCK_ANDROID_APP_COMMUNICATION_H_