Add first stub methods to send window status updates from Android to host

This commit is contained in:
Simon Fels 2016-11-11 09:41:10 +01:00
commit 6ee8734cf3
10 changed files with 130 additions and 18 deletions

View file

@ -33,4 +33,14 @@ status_t PlatformService::boot_finished() {
platform_api_stub_->boot_finished();
return OK;
}
status_t PlatformService::update_window_state() {
platform_api_stub_->update_window_state();
return OK;
}
status_t PlatformService::remove_window() {
platform_api_stub_->remove_window();
return OK;
}
} // namespace android