chromium/components/payments/content/developer_console_logger.h

// Copyright 2018 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_DEVELOPER_CONSOLE_LOGGER_H_
#define COMPONENTS_PAYMENTS_CONTENT_DEVELOPER_CONSOLE_LOGGER_H_

#include "base/memory/weak_ptr.h"
#include "components/payments/core/error_logger.h"

namespace content {
class WebContents;
}

namespace payments {

// Logs messages for web developers to the developer console.
class DeveloperConsoleLogger : public ErrorLogger {};

}  // namespace payments

#endif  // COMPONENTS_PAYMENTS_CONTENT_DEVELOPER_CONSOLE_LOGGER_H_