| Index: content/renderer/pepper/pepper_plugin_delegate_impl.cc
|
| diff --git a/content/renderer/pepper/pepper_plugin_delegate_impl.cc b/content/renderer/pepper/pepper_plugin_delegate_impl.cc
|
| index 454fb17265519b73487797136280b28139eda84a..67a42c8298aa36b5d5f1d92629d1e34c2eb3e5e8 100644
|
| --- a/content/renderer/pepper/pepper_plugin_delegate_impl.cc
|
| +++ b/content/renderer/pepper/pepper_plugin_delegate_impl.cc
|
| @@ -429,6 +429,23 @@ void PepperPluginDelegateImpl::PluginSelectionChanged(
|
| render_view_->PpapiPluginSelectionChanged();
|
| }
|
|
|
| +void PepperPluginDelegateImpl::SimulateImeSetComposition(
|
| + const string16& text,
|
| + const std::vector<WebKit::WebCompositionUnderline>& underlines,
|
| + int selection_start,
|
| + int selection_end) {
|
| + if (render_view_) {
|
| + render_view_->SimulateImeSetComposition(
|
| + text, underlines, selection_start, selection_end);
|
| + }
|
| +}
|
| +
|
| +void PepperPluginDelegateImpl::SimulateImeConfirmComposition(
|
| + const string16& text) {
|
| + if (render_view_)
|
| + render_view_->SimulateImeConfirmComposition(text, ui::Range());
|
| +}
|
| +
|
| void PepperPluginDelegateImpl::OnImeSetComposition(
|
| const string16& text,
|
| const std::vector<WebKit::WebCompositionUnderline>& underlines,
|
|
|