| 301 | } |
| 302 | |
| 303 | void Client::updateKeyboardStatus(Json::Value& msg) { |
| 304 | const auto& openKeyboardVal = msg["openKeyboard"]; |
| 305 | if (openKeyboardVal.isBool()) { |
| 306 | textService_->setKeyboardOpen(openKeyboardVal.asBool()); |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | void Client::updateStatus(Json::Value& msg, Ime::EditSession* session) { |
| 311 | // We need to handle ordering of some types of the requests. |
nothing calls this directly
no test coverage detected