Commit 75d7160d authored by newt's avatar newt Committed by Commit bot

Add empty implementation of ThreadedInputConnection.deleteSurroundingTextInCodePoints().

This is needed to allow building with the N preview SDK.

BUG=595525,595522

Review URL: https://codereview.chromium.org/1808073002

Cr-Commit-Position: refs/heads/master@{#381652}
parent 919cc1e0
......@@ -397,6 +397,14 @@ public class ThreadedInputConnection implements ChromiumBaseInputConnection {
return true;
}
/**
* @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)
*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment