blob: 070e9bf312db7f484f7e0be9b7ace51ac08c4daf [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_ANDROID_AUTOFILL_ASSISTANT_ASSISTANT_OVERLAY_DELEGATE_H_
#define CHROME_BROWSER_ANDROID_AUTOFILL_ASSISTANT_ASSISTANT_OVERLAY_DELEGATE_H_
#include "base/android/scoped_java_ref.h"
#include "base/memory/raw_ptr.h"
namespace autofill_assistant {
class UiControllerAndroid;
// Delegate class for the assistant overlay.
class AssistantOverlayDelegate {
public:
explicit AssistantOverlayDelegate(UiControllerAndroid* ui_controller);
~AssistantOverlayDelegate();
void OnUnexpectedTaps(JNIEnv* env,
const base::android::JavaParamRef<jobject>& jcaller);
base::android::ScopedJavaGlobalRef<jobject> GetJavaObject();
private:
raw_ptr<UiControllerAndroid> ui_controller_;
// Java-side AssistantOverlayDelegate object.
base::android::ScopedJavaGlobalRef<jobject> java_assistant_overlay_delegate_;
};
} // namespace autofill_assistant
#endif // CHROME_BROWSER_ANDROID_AUTOFILL_ASSISTANT_ASSISTANT_OVERLAY_DELEGATE_H_