blob: 5cf79486d6131bbb2c597fe7e18be2359d68c4c8 [file] [log] [blame]
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/location/android/location_settings_impl.h"
#include "base/android/jni_android.h"
#include "components/location/android/location_settings_dialog_outcome.h"
#include "ui/android/window_android.h"
// Must come after all headers that specialize FromJniType() / ToJniType().
#include "components/location/android/jni_headers/LocationSettings_jni.h"
using base::android::AttachCurrentThread;
using LocationSettingsDialogOutcomeCallback =
LocationSettings::LocationSettingsDialogOutcomeCallback;
LocationSettingsImpl::LocationSettingsImpl() = default;
LocationSettingsImpl::~LocationSettingsImpl() = default;
bool LocationSettingsImpl::HasAndroidLocationPermission() {
JNIEnv* env = AttachCurrentThread();
return Java_LocationSettings_hasAndroidLocationPermission(env);
}
bool LocationSettingsImpl::HasAndroidFineLocationPermission() {
JNIEnv* env = AttachCurrentThread();
return Java_LocationSettings_hasAndroidFineLocationPermission(env);
}
bool LocationSettingsImpl::CanPromptForAndroidLocationPermission(
ui::WindowAndroid* window) {
if (window == nullptr)
return false;
JNIEnv* env = AttachCurrentThread();
return Java_LocationSettings_canPromptForAndroidLocationPermission(
env, window->GetJavaObject());
}
bool LocationSettingsImpl::IsSystemLocationSettingEnabled() {
JNIEnv* env = AttachCurrentThread();
return Java_LocationSettings_isSystemLocationSettingEnabled(env);
}
bool LocationSettingsImpl::CanPromptToEnableSystemLocationSetting() {
JNIEnv* env = AttachCurrentThread();
return Java_LocationSettings_canPromptToEnableSystemLocationSetting(env);
}
void LocationSettingsImpl::PromptToEnableSystemLocationSetting(
const LocationSettingsDialogContext prompt_context,
ui::WindowAndroid* window,
LocationSettingsDialogOutcomeCallback callback) {
if (window == nullptr) {
std::move(callback).Run(LocationSettingsDialogOutcome::NO_PROMPT);
return;
}
JNIEnv* env = AttachCurrentThread();
// Transfers the ownership of the callback to the Java callback. The Java
// callback is guaranteed to be called unless the user never replies to the
// dialog, and the callback pointer will be destroyed in
// OnLocationSettingsDialogOutcome.
auto* callback_ptr =
new LocationSettingsDialogOutcomeCallback(std::move(callback));
Java_LocationSettings_promptToEnableSystemLocationSetting(
env, prompt_context, window->GetJavaObject(),
reinterpret_cast<jlong>(callback_ptr));
}
static void JNI_LocationSettings_OnLocationSettingsDialogOutcome(
JNIEnv* env,
jlong callback_ptr,
int result) {
auto* callback =
reinterpret_cast<LocationSettingsDialogOutcomeCallback*>(callback_ptr);
std::move(*callback).Run(static_cast<LocationSettingsDialogOutcome>(result));
// Destroy the callback whose ownership was transferred in
// PromptToEnableSystemLocationSetting.
delete callback;
}