Index: chrome/plugin/webplugin_delegate_stub.cc |
=================================================================== |
--- chrome/plugin/webplugin_delegate_stub.cc (revision 62862) |
+++ chrome/plugin/webplugin_delegate_stub.cc (working copy) |
@@ -122,6 +122,8 @@ |
IPC_MESSAGE_HANDLER(PluginMsg_ContainerHidden, OnContainerHidden) |
IPC_MESSAGE_HANDLER(PluginMsg_ContainerShown, OnContainerShown) |
IPC_MESSAGE_HANDLER(PluginMsg_WindowFrameChanged, OnWindowFrameChanged) |
+ IPC_MESSAGE_HANDLER(PluginMsg_ImeCompositionConfirmed, |
+ OnImeCompositionConfirmed) |
#endif |
IPC_MESSAGE_HANDLER(PluginMsg_DidReceiveManualResponse, |
OnDidReceiveManualResponse) |
@@ -367,6 +369,11 @@ |
if (delegate_) |
delegate_->WindowFrameChanged(window_frame, view_frame); |
} |
+ |
+void WebPluginDelegateStub::OnImeCompositionConfirmed(const string16& text) { |
+ if (delegate_) |
+ delegate_->ImeCompositionConfirmed(text); |
+} |
#endif // OS_MACOSX |
void WebPluginDelegateStub::OnDidReceiveManualResponse( |