chromium/components/payments/content/android_app_communication_stub.cc

// Copyright 2020 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/payments/content/android_app_communication.h"

#include <optional>
#include <utility>

#include "base/functional/callback.h"
#include "components/payments/core/native_error_strings.h"

namespace payments {
namespace {

class AndroidAppCommunicationStub : public AndroidAppCommunication {};

}  // namespace

// Declared in cross-platform header file. See:
// components/payments/content/android_app_communication.h
// static
std::unique_ptr<AndroidAppCommunication> AndroidAppCommunication::Create(
    content::BrowserContext* context) {}

}  // namespace payments