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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/metrics/ActivityStopMetrics.java

Issue 2371003003: Remove non-elderberry herb flavors. (Closed)
Patch Set: Rebase Created 4 years, 3 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/android/java/src/org/chromium/chrome/browser/metrics/ActivityStopMetrics.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/metrics/ActivityStopMetrics.java b/chrome/android/java/src/org/chromium/chrome/browser/metrics/ActivityStopMetrics.java
index cb6cdff3437b98586eb8eae481ffcd33bf16b58f..2c1b266be256cd881166fdf08e24bf5569eb9169 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/metrics/ActivityStopMetrics.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/metrics/ActivityStopMetrics.java
@@ -21,9 +21,6 @@ public class ActivityStopMetrics {
@IntDef({
STOP_REASON_UNKNOWN,
STOP_REASON_BACK_BUTTON,
- STOP_REASON_RETURN_BUTTON,
- STOP_REASON_CUSTOM_TAB_STARTED,
- STOP_REASON_CUSTOM_TAB_STOPPED,
STOP_REASON_OTHER_CHROME_ACTIVITY_IN_FOREGROUND,
STOP_REASON_COUNT
})
@@ -35,14 +32,15 @@ public class ActivityStopMetrics {
/** Activity stopped after the user hit the back button. */
public static final int STOP_REASON_BACK_BUTTON = 1;
- /** Activity stopped after the user hit the close/return UI button. */
- public static final int STOP_REASON_RETURN_BUTTON = 2;
+ // Obsolete -- Activity stopped after the user hit the close/return UI button.
+ // public static final int STOP_REASON_RETURN_BUTTON = 2;
- /** Activity stopped because it launched a {@link CustomTabActivity} on top of itself. */
- public static final int STOP_REASON_CUSTOM_TAB_STARTED = 3;
+ // Obsolete -- Activity stopped because it launched a {@link CustomTabActivity} on top of
+ // itself.
+ // public static final int STOP_REASON_CUSTOM_TAB_STARTED = 3;
- /** Activity stopped because its child {@link CustomTabActivity} stopped itself. */
- public static final int STOP_REASON_CUSTOM_TAB_STOPPED = 4;
+ // Obsolete -- Activity stopped because its child {@link CustomTabActivity} stopped itself.
+ // public static final int STOP_REASON_CUSTOM_TAB_STOPPED = 4;
/** Activity stopped because another of Chrome Activities came into focus. */
public static final int STOP_REASON_OTHER_CHROME_ACTIVITY_IN_FOREGROUND = 5;

Powered by Google App Engine
This is Rietveld 408576698