Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1000)

Unified Diff: chrome/browser/android/vr_shell/vr_gl_thread.cc

Issue 2975683002: Add GeolocationManager service (Closed)
Patch Set: Add GeolocationManager service Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/android/vr_shell/vr_gl_thread.cc
diff --git a/chrome/browser/android/vr_shell/vr_gl_thread.cc b/chrome/browser/android/vr_shell/vr_gl_thread.cc
index a703d1b3f6278441bcc9a975fc20d27012fd58fd..c7a2be44910ceb812622020097c56e389eb15d8c 100644
--- a/chrome/browser/android/vr_shell/vr_gl_thread.cc
+++ b/chrome/browser/android/vr_shell/vr_gl_thread.cc
@@ -207,6 +207,12 @@ void VrGLThread::SetAudioCapturingIndicator(bool enabled) {
weak_scene_manager_, enabled));
}
+void VrGLThread::SetLocationAccessIndicator(bool enabled) {
+ task_runner()->PostTask(
+ FROM_HERE, base::Bind(&UiSceneManager::SetLocationAccessIndicator,
+ weak_scene_manager_, enabled));
+}
+
void VrGLThread::SetVideoCapturingIndicator(bool enabled) {
task_runner()->PostTask(
FROM_HERE, base::Bind(&UiSceneManager::SetVideoCapturingIndicator,

Powered by Google App Engine
This is Rietveld 408576698