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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContextSelectionClient.java

Issue 2815833003: [SmartText selection] Add LocaleList to the provider interface (Closed)
Patch Set: Pass Locale array instead of LocaleList in the interface Created 3 years, 8 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
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/browser/ContextSelectionProvider.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/android/java/src/org/chromium/content/browser/ContextSelectionClient.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContextSelectionClient.java b/content/public/android/java/src/org/chromium/content/browser/ContextSelectionClient.java
index 63d5a6161b39fcdec62b31c4f734ad5506b61ce6..6a8bcea1be127d6450024cd13c9400a3b5a49a39 100644
--- a/content/public/android/java/src/org/chromium/content/browser/ContextSelectionClient.java
+++ b/content/public/android/java/src/org/chromium/content/browser/ContextSelectionClient.java
@@ -137,11 +137,11 @@ public class ContextSelectionClient implements SelectionClient {
switch (callbackData) {
case SUGGEST_AND_CLASSIFY:
- mProvider.sendSuggestAndClassifyRequest(text, start, end);
+ mProvider.sendSuggestAndClassifyRequest(text, start, end, null);
break;
case CLASSIFY:
- mProvider.sendClassifyRequest(text, start, end);
+ mProvider.sendClassifyRequest(text, start, end, null);
break;
default:
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/browser/ContextSelectionProvider.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698