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

Unified Diff: components/location/android/location_settings_dialog_outcome.h

Issue 2709883005: Stubs for triggering the LSD in Clank (Closed)
Patch Set: Group location settings dialog enums into a single java_cpp_enum rule Created 3 years, 10 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
« no previous file with comments | « components/location/android/location_settings_dialog_context.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/location/android/location_settings_dialog_outcome.h
diff --git a/components/location/android/location_settings_dialog_outcome.h b/components/location/android/location_settings_dialog_outcome.h
new file mode 100644
index 0000000000000000000000000000000000000000..b5924c2a0655240f6bdfd6a45f7df8fbe8eaa7e7
--- /dev/null
+++ b/components/location/android/location_settings_dialog_outcome.h
@@ -0,0 +1,30 @@
+// Copyright 2017 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 COMPONENTS_LOCATION_LOCATION_SETTINGS_DIALOG_OUTCOME_H_
+#define COMPONENTS_LOCATION_LOCATION_SETTINGS_DIALOG_OUTCOME_H_
+
+// An enum to describe the outcome of a system location setting prompt.
+// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.components.location
+enum LocationSettingsDialogOutcome {
+ // The user accepted the prompt and the system location setting has been
+ // flipped to granted.
+ GRANTED = 1,
+
+ // The user rejected the prompt and the system location setting has not been
+ // flipped.
+ DENIED = 2,
+
+ // The prompt could not be triggered.
+ // When CanPromptToEnableSystemLocationSetting() returns true, this should
+ // only happen in exceptional circonstances, e.g.
+ // - In the case of a race condition where the system location setting is
+ // flipped elsewhere before the prompt could be triggered;
+ // - In the case where some of the features required to trigger a system
+ // location setting prompt became unavailable or unresponsive after the
+ // response from CanPromptToEnableSystemLocationSetting() was received.
+ NO_PROMPT = 3,
+};
+
+#endif // COMPONENTS_LOCATION_LOCATION_SETTINGS_DIALOG_OUTCOME_H_
« no previous file with comments | « components/location/android/location_settings_dialog_context.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698