The displayed category is "SIMs". Bug: 346776183 Flag: EXEMPT bug fix Test: manual - search "Mobile data" Test: unit test Change-Id: If3c395281e96603193e7476a9e76d1f9e9213531
15 lines
258 B
Protocol Buffer
15 lines
258 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package com.android.settings.spa;
|
|
|
|
message SpaSearchLandingKey {
|
|
oneof page {
|
|
SpaSearchLandingSpaPage spa_page = 1;
|
|
}
|
|
}
|
|
|
|
message SpaSearchLandingSpaPage {
|
|
/** The destination of SPA page. */
|
|
optional string destination = 1;
|
|
}
|