#ifndef COMPONENTS_PERMISSIONS_ANDROID_BLUETOOTH_CHOOSER_ANDROID_DELEGATE_H_
#define COMPONENTS_PERMISSIONS_ANDROID_BLUETOOTH_CHOOSER_ANDROID_DELEGATE_H_
#include "base/android/scoped_java_ref.h"
#include "components/security_state/core/security_state.h"
namespace content {
class WebContents;
}
namespace permissions {
class BluetoothChooserAndroidDelegate {
public:
virtual ~BluetoothChooserAndroidDelegate() = default;
virtual base::android::ScopedJavaLocalRef<jobject> GetJavaObject() = 0;
virtual security_state::SecurityLevel GetSecurityLevel(
content::WebContents* web_contents) = 0;
};
}
#endif