| Index: ppapi/shared_impl/input_event_impl.cc
|
| diff --git a/ppapi/shared_impl/input_event_impl.cc b/ppapi/shared_impl/input_event_impl.cc
|
| index d502a62f9ec5a4eb8150a0883c0810024f6d5b73..afd82da767b4cebba2f9f1abfc7b3d4b3c0c55fd 100644
|
| --- a/ppapi/shared_impl/input_event_impl.cc
|
| +++ b/ppapi/shared_impl/input_event_impl.cc
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "ppapi/shared_impl/input_event_impl.h"
|
|
|
| -#include "ppapi/shared_impl/ppapi_globals.h"
|
| #include "ppapi/shared_impl/var.h"
|
|
|
| using ppapi::thunk::PPB_InputEvent_API;
|
| @@ -100,9 +99,7 @@ uint32_t InputEventImpl::GetKeyCode() {
|
| }
|
|
|
| PP_Var InputEventImpl::GetCharacterText() {
|
| - return StringVar::StringToPPVar(
|
| - PpapiGlobals::Get()->GetModuleForInstance(pp_instance()),
|
| - data_.character_text);
|
| + return StringVar::StringToPPVar(data_.character_text);
|
| }
|
|
|
| uint32_t InputEventImpl::GetIMESegmentNumber() {
|
|
|