| Index: load.cc
|
| diff --git a/load.cc b/load.cc
|
| index db8c129f4056ba8a8de83a6388ccc309c72886c2..6dff49fc0772eec1ea63743312fd57774d5089bb 100644
|
| --- a/load.cc
|
| +++ b/load.cc
|
| @@ -154,6 +154,11 @@ DECL_FUNC_4(SetImeConfig,
|
| const char*,
|
| const ImeConfigValue&);
|
| DECL_FUNC_1(GetKeyboardOverlayId, std::string, const std::string&);
|
| +DECL_FUNC_2(SendHandwritingStrokes,
|
| + void,
|
| + InputMethodStatusConnection*,
|
| + const chromeos::HandwritingStrokes&);
|
| +DECL_FUNC_2(CancelHandwriting, void, InputMethodStatusConnection*, int);
|
| DECL_FUNC_2(MonitorInputMethodUiStatus,
|
| InputMethodUiStatusConnection*,
|
| const InputMethodUiStatusMonitorFunctions&,
|
| @@ -504,6 +509,8 @@ bool LoadLibcros(const char* path_to_libcros, std::string& error_string) {
|
| INIT_FUNC(SetImePropertyActivated);
|
| INIT_FUNC(SetImeConfig);
|
| INIT_FUNC(GetKeyboardOverlayId);
|
| + INIT_FUNC(SendHandwritingStrokes);
|
| + INIT_FUNC(CancelHandwriting);
|
| INIT_FUNC(MonitorInputMethodUiStatus);
|
| INIT_FUNC(DisconnectInputMethodUiStatus);
|
| INIT_FUNC(NotifyCandidateClicked);
|
|
|