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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchHeuristic.java

Issue 2365653007: [Contextual Search] Exclude suppressed taps from aggregate suppression heuristics logging (Closed)
Patch Set: [Contextual Search] Exclude suppressed taps from aggregate suppression heuristics logging 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/contextualsearch/ContextualSearchHeuristic.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchHeuristic.java b/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchHeuristic.java
index 0882d3d1082d0584c1cd4b8c59238a2f4bdaaf99..8bed11b96c3a00fddcfc538ae11d3e760066b30c 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchHeuristic.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchHeuristic.java
@@ -44,9 +44,9 @@ abstract class ContextualSearchHeuristic {
}
/**
- * @return Whether this heuristic's condition would have been satisfied if it were enabled
- * through VariationsAssociatedData. When logging aggregate metrics for Tap suppression,
- * the condition may be considered satisfied even if the tap wasn't suppresed.
+ * @return Whether this heuristic's condition would have been satisfied, causing a tap
+ * suppression, if it were enabled through VariationsAssociatedData. This method should
+ * return false if the feature is enabled through VariationsAssociatedData.
Donn Denman 2016/09/23 20:40:13 Nit: please rephrase this second sentence to bette
Theresa 2016/09/23 20:57:30 Done.
*/
protected abstract boolean isConditionSatisfiedForAggregateLogging();
}

Powered by Google App Engine
This is Rietveld 408576698