#ifndef CONTENT_BROWSER_ANDROID_SELECT_POPUP_H_
#define CONTENT_BROWSER_ANDROID_SELECT_POPUP_H_
#include <jni.h>
#include "base/android/jni_weak_ref.h"
#include "base/android/scoped_java_ref.h"
#include "base/memory/raw_ptr.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "third_party/blink/public/mojom/choosers/popup_menu.mojom.h"
#include "ui/android/view_android.h"
namespace gfx {
class Rect;
}
namespace content {
class WebContentsImpl;
class SelectPopup {
public:
explicit SelectPopup(WebContentsImpl* web_contents);
~SelectPopup();
void ShowMenu(mojo::PendingRemote<blink::mojom::PopupMenuClient> popup_client,
const gfx::Rect& bounds,
std::vector<blink::mojom::MenuItemPtr> items,
int selected_item,
bool multiple,
bool right_aligned);
void HideMenu();
void SelectMenuItems(JNIEnv* env,
jlong selectPopupSourceFrame,
const base::android::JavaParamRef<jintArray>& indices);
private:
raw_ptr<WebContentsImpl> web_contents_;
JavaObjectWeakGlobalRef java_obj_;
ui::ViewAndroid::ScopedAnchorView popup_view_;
mojo::Remote<blink::mojom::PopupMenuClient> popup_client_;
};
}
#endif