1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 19:42:01 +02:00

Implement pop up add account menu (for Google Account).

This commit is contained in:
Valverde Antonio 2014-07-02 18:37:39 +09:00
parent 9125816d07
commit d294906a65
8 changed files with 64 additions and 1 deletions

Binary file not shown.

View file

@ -7,6 +7,7 @@ enum MessageType {
DO_KEYEVENT = 2;
DO_TYPE = 3;
DO_WAKE = 4;
DO_ADD_ACCOUNT_MENU = 24;
GET_BROWSERS = 5;
GET_CLIPBOARD = 6;
GET_DISPLAY = 19;
@ -176,6 +177,13 @@ message DoIdentifyResponse {
required bool success = 1;
}
message DoAddAccountMenuRequest {
}
message DoAddAccountMenuResponse {
required bool success = 1;
}
message RemoveAccountRequest {
}