| Index: chrome/plugin/webplugin_delegate_stub.cc
|
| diff --git a/chrome/plugin/webplugin_delegate_stub.cc b/chrome/plugin/webplugin_delegate_stub.cc
|
| index 7e8808c44d19613764ed778afaee9b8dafa9ee20..6b0f39a47459249fe5ce056f67fcc6e983f01cf1 100644
|
| --- a/chrome/plugin/webplugin_delegate_stub.cc
|
| +++ b/chrome/plugin/webplugin_delegate_stub.cc
|
| @@ -125,8 +125,8 @@ bool WebPluginDelegateStub::OnMessageReceived(const IPC::Message& msg) {
|
| IPC_MESSAGE_HANDLER(PluginMsg_ContainerHidden, OnContainerHidden)
|
| IPC_MESSAGE_HANDLER(PluginMsg_ContainerShown, OnContainerShown)
|
| IPC_MESSAGE_HANDLER(PluginMsg_WindowFrameChanged, OnWindowFrameChanged)
|
| - IPC_MESSAGE_HANDLER(PluginMsg_ImeCompositionConfirmed,
|
| - OnImeCompositionConfirmed)
|
| + IPC_MESSAGE_HANDLER(PluginMsg_ImeCompositionCompleted,
|
| + OnImeCompositionCompleted)
|
| #endif
|
| IPC_MESSAGE_HANDLER(PluginMsg_DidReceiveManualResponse,
|
| OnDidReceiveManualResponse)
|
| @@ -378,9 +378,9 @@ void WebPluginDelegateStub::OnWindowFrameChanged(const gfx::Rect& window_frame,
|
| delegate_->WindowFrameChanged(window_frame, view_frame);
|
| }
|
|
|
| -void WebPluginDelegateStub::OnImeCompositionConfirmed(const string16& text) {
|
| +void WebPluginDelegateStub::OnImeCompositionCompleted(const string16& text) {
|
| if (delegate_)
|
| - delegate_->ImeCompositionConfirmed(text);
|
| + delegate_->ImeCompositionCompleted(text);
|
| }
|
| #endif // OS_MACOSX
|
|
|
|
|