chromium/chrome/renderer/google_accounts_private_api_extension.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 CHROME_RENDERER_GOOGLE_ACCOUNTS_PRIVATE_API_EXTENSION_H_
#define CHROME_RENDERER_GOOGLE_ACCOUNTS_PRIVATE_API_EXTENSION_H_

#include "base/memory/weak_ptr.h"
#include "chrome/common/google_accounts_private_api_extension.mojom.h"
#include "content/public/renderer/render_frame_observer.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "v8/include/v8-forward.h"

namespace gin {
class Arguments;
}  // namespace gin

// This class allows the addition of functions to the Google Accounts page;
// accounts.google.com.
class GoogleAccountsPrivateApiExtension : public content::RenderFrameObserver {};

#endif  // CHROME_RENDERER_GOOGLE_ACCOUNTS_PRIVATE_API_EXTENSION_H_