user pressed the Back Key on the phone
| 272 | |
| 273 | // user pressed the Back Key on the phone |
| 274 | void RenderViewImpl::OnBackKeyPress() |
| 275 | { |
| 276 | ax::EventKeyboard event(EventKeyboard::KeyCode::KEY_ESCAPE, true); |
| 277 | ax::Director::getInstance()->getEventDispatcher()->dispatchEvent(&event); |
| 278 | } |
| 279 | |
| 280 | void RenderViewImpl::BackButtonListener(EventKeyboard::KeyCode keyCode, Event* event) |
| 281 | { |
no test coverage detected