diff options
author | Tiger Huang <tigerhuang@google.com> | 2020-10-29 20:20:26 +0800 |
---|---|---|
committer | Tiger Huang <tigerhuang@google.com> | 2020-11-18 15:54:09 +0800 |
commit | 44a8e4daf02ab0b216d7943326d3d59a6bf8792e (patch) | |
tree | ffc214e4d05bee94bfcd9d2896aebd4420c1d7e2 /proto/src | |
parent | b73471b4ec9e5f338162ffb6e99e589c63b89c46 (diff) |
Don't handle the system UI visibility at server side
The system UI visibility has been deprecated. Except disable flags, it
should be converted to the new APIs before being sent to WMS. This CL
renames mSystemUiVisibilitiy to mDisableFLags in WindowState.
Bug: 149813814
Test: atest TaskSnapshotControllerTest TaskSnapshotPersisterLoaderTest
Change-Id: I6730ba664359656ee814c7bc959844d6ed4aaeb9
Diffstat (limited to 'proto/src')
-rw-r--r-- | proto/src/task_snapshot.proto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/proto/src/task_snapshot.proto b/proto/src/task_snapshot.proto index 2006fb3d7bf1..4b0e4c218c86 100644 --- a/proto/src/task_snapshot.proto +++ b/proto/src/task_snapshot.proto @@ -29,7 +29,7 @@ int32 inset_bottom = 5; bool is_real_snapshot = 6; int32 windowing_mode = 7; - int32 system_ui_visibility = 8; + int32 system_ui_visibility = 8 [deprecated=true]; bool is_translucent = 9; string top_activity_component = 10; // deprecated because original width and height are stored now instead of the scale. @@ -40,4 +40,5 @@ int32 task_width = 14; // The task height when the snapshot was taken int32 task_height = 15; + int32 appearance = 16; } |