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

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

Issue 1808073002: Add empty implementation of ThreadedInputConnection.deleteSurroundingTextInCodePoints(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: returned false Created 4 years, 9 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 | no next file » | 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/input/ThreadedInputConnection.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/input/ThreadedInputConnection.java b/content/public/android/java/src/org/chromium/content/browser/input/ThreadedInputConnection.java
index 3728bf3b7482406dd2a3c28ea11feb691b98d6f6..5467df76b7b4c3a693e2f05c1f9cbb21e70afc49 100644
--- a/content/public/android/java/src/org/chromium/content/browser/input/ThreadedInputConnection.java
+++ b/content/public/android/java/src/org/chromium/content/browser/input/ThreadedInputConnection.java
@@ -398,6 +398,14 @@ public class ThreadedInputConnection implements ChromiumBaseInputConnection {
}
/**
+ * @see InputConnection#deleteSurroundingTextInCodePoints(int, int)
+ */
+ public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) {
+ // TODO(changwan): Implement this. http://crbug.com/595525
+ return false;
+ }
+
+ /**
* @see InputConnection#sendKeyEvent(android.view.KeyEvent)
*/
@Override
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698