Index: ppapi/thunk/ppb_text_input_thunk.cc |
diff --git a/ppapi/thunk/ppb_text_input_thunk.cc b/ppapi/thunk/ppb_text_input_thunk.cc |
index 7d35e2a799fbb3f8b1e1b54b14182fc49233798b..a9c9d8984ee6587a17047b98c0926c3720b435d0 100644 |
--- a/ppapi/thunk/ppb_text_input_thunk.cc |
+++ b/ppapi/thunk/ppb_text_input_thunk.cc |
@@ -2,6 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include "ppapi/c/ppb_text_input_controller.h" |
+ |
#include "ppapi/thunk/enter.h" |
#include "ppapi/thunk/thunk.h" |
#include "ppapi/thunk/ppb_instance_api.h" |
@@ -58,6 +60,13 @@ const PPB_TextInput_Dev g_ppb_textinput_0_2_thunk = { |
&SelectionChanged, |
}; |
+const PPB_TextInputController_1_0 g_ppb_textinputcontroller_1_0_thunk = { |
+ &SetTextInputType, |
+ &UpdateCaretPosition, |
+ &CancelCompositionText, |
+ &UpdateSurroundingText, |
+}; |
+ |
} // namespace |
const PPB_TextInput_Dev_0_1* GetPPB_TextInput_Dev_0_1_Thunk() { |
@@ -68,5 +77,9 @@ const PPB_TextInput_Dev_0_2* GetPPB_TextInput_Dev_0_2_Thunk() { |
return &g_ppb_textinput_0_2_thunk; |
} |
+const PPB_TextInputController_1_0* GetPPB_TextInputController_1_0_Thunk() { |
+ return &g_ppb_textinputcontroller_1_0_thunk; |
+} |
+ |
} // namespace thunk |
} // namespace ppapi |