| Index: content/browser/renderer_host/render_widget_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_widget_host_impl.h b/content/browser/renderer_host/render_widget_host_impl.h
|
| index 8c17eef9be6970a9fd9b47198fb2d10594983947..1011c3510eed01517a4c9c52119e17c430649f5a 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.h
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.h
|
| @@ -403,9 +403,11 @@ class CONTENT_EXPORT RenderWidgetHostImpl : public RenderWidgetHost,
|
| // (on Windows);
|
| // * when it receives a "commit" signal of GtkIMContext (on Linux);
|
| // * when insertText of NSTextInput is called (on Mac).
|
| - void ImeCommitText(const base::string16& text,
|
| - const gfx::Range& replacement_range,
|
| - int relative_cursor_pos);
|
| + void ImeCommitText(
|
| + const base::string16& text,
|
| + const std::vector<blink::WebCompositionUnderline>& underlines,
|
| + const gfx::Range& replacement_range,
|
| + int relative_cursor_pos);
|
|
|
| // Finishes an ongoing composition.
|
| // A browser should call this function or ImeCommitText:
|
|
|