Chromium Code Reviews| Index: third_party/WebKit/public/web/WebPlugin.h |
| diff --git a/third_party/WebKit/public/web/WebPlugin.h b/third_party/WebKit/public/web/WebPlugin.h |
| index e805e94d7b926aa827ba0b08c9b0d4150b5f9f65..0d96ac8468a67de5118bd950f17199be6980d3ea 100644 |
| --- a/third_party/WebKit/public/web/WebPlugin.h |
| +++ b/third_party/WebKit/public/web/WebPlugin.h |
| @@ -195,8 +195,14 @@ class WebPlugin { |
| // before and after the selection or caret. |
| virtual void extendSelectionAndDelete(int before, int after) {} |
| // Deletes text before and after the current cursor position, excluding the |
| - // selection. |
| + // selection. The lengths are supplied in Java chars, not in code points or in |
|
yosin_UTC9
2017/02/09 07:19:28
s/Java chars/UTF-16 Code Unit/
Blink doesn't know
yabinh
2017/02/09 10:37:04
Done.
|
| + // glyphs. |
| virtual void deleteSurroundingText(int before, int after) {} |
| + // Deletes text before and after the current cursor position, excluding the |
| + // selection. The lengths are supplied in code points, not in Java chars or in |
| + // glyphs. Do nothing if there are one or more invalid surrogate pairs in the |
| + // requested range. |
| + virtual void deleteSurroundingTextInCodePoints(int before, int after) {} |
| // If the given position is over a link, returns the absolute url. |
| // Otherwise an empty url is returned. |
| virtual WebURL linkAtPosition(const WebPoint& position) const { |