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

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

Issue 2386413002: [Contextual Search] Do not include tap suppression in aggregate heuristic logging (Closed)
Patch Set: [Contextual Search] Do not include tap suppression in aggregate heuristic logging Created 4 years, 2 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 8fdb708f05f27a07be9000fb4c857a3c4c5345c5..16bfd0f8d38ea0284e09b1cdcbd4285c025009b3 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
@@ -40,7 +40,7 @@ abstract class ContextualSearchHeuristic {
* suppression.
*/
protected boolean shouldAggregateLogForTapSuppression() {
- return true;
+ return false;
}
/**
@@ -48,5 +48,7 @@ abstract class ContextualSearchHeuristic {
* suppression, if it were enabled through VariationsAssociatedData. If the feature is
* enabled through VariationsAssociatedData then this method should return false.
*/
- protected abstract boolean isConditionSatisfiedForAggregateLogging();
+ protected boolean isConditionSatisfiedForAggregateLogging() {
+ return false;
+ }
}

Powered by Google App Engine
This is Rietveld 408576698