Index: chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchNetworkCommunicator.java |
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchNetworkCommunicator.java b/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchNetworkCommunicator.java |
index 3a823da5b36ec302aa6d75f1c56b3fba34513efa..444c5160df41b9cbb8569a3990d8386700a068f8 100644 |
--- a/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchNetworkCommunicator.java |
+++ b/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchNetworkCommunicator.java |
@@ -29,9 +29,14 @@ public interface ContextualSearchNetworkCommunicator { |
* @param displayText the text to display that describes the search term. |
* @param alternateTerm the alternate search term. |
* @param doPreventPreload whether to prevent preloading the search result. |
+ * @param selectionStartAdjust The start offset adjustment of the selection to use to highlight |
+ * the search term. |
+ * @param selectionEndAdjust The end offset adjustment of the selection to use to highlight |
+ * the search term. |
*/ |
void handleSearchTermResolutionResponse(boolean isNetworkUnavailable, int responseCode, |
- String searchTerm, String displayText, String alternateTerm, boolean doPreventPreload); |
+ String searchTerm, String displayText, String alternateTerm, boolean doPreventPreload, |
+ int selectionStartAdjust, int selectionEndAdjust); |
/** |
* Loads a URL in the search content view. |