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; |
+ } |
} |