Add first stub methods to send window status updates from Android to host
This commit is contained in:
parent
a39c1b2bd2
commit
6ee8734cf3
10 changed files with 130 additions and 18 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue