chromium/chrome/browser/touch_to_fill/password_manager/password_generation/android/touch_to_fill_password_generation_bridge.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_BROWSER_TOUCH_TO_FILL_PASSWORD_MANAGER_PASSWORD_GENERATION_ANDROID_TOUCH_TO_FILL_PASSWORD_GENERATION_BRIDGE_H_
#define CHROME_BROWSER_TOUCH_TO_FILL_PASSWORD_MANAGER_PASSWORD_GENERATION_ANDROID_TOUCH_TO_FILL_PASSWORD_GENERATION_BRIDGE_H_

#include <string>

#include <jni.h>

#include "components/prefs/pref_service.h"
#include "content/public/browser/web_contents.h"

class TouchToFillPasswordGenerationDelegate;

class TouchToFillPasswordGenerationBridge {
 public:
  virtual ~TouchToFillPasswordGenerationBridge() = default;

  virtual bool Show(content::WebContents* web_contents,
                    PrefService* pref_service,
                    TouchToFillPasswordGenerationDelegate* delegate,
                    std::u16string password,
                    std::string account) = 0;
  virtual void Hide() = 0;
  virtual void OnDismissed(JNIEnv* env, bool generated_password_accepted) = 0;
  virtual void OnGeneratedPasswordAccepted(
      JNIEnv* env,
      const base::android::JavaParamRef<jstring>& password) = 0;
  virtual void OnGeneratedPasswordRejected(JNIEnv* env) = 0;
};

#endif  // CHROME_BROWSER_TOUCH_TO_FILL_PASSWORD_MANAGER_PASSWORD_GENERATION_ANDROID_TOUCH_TO_FILL_PASSWORD_GENERATION_BRIDGE_H_