blob: 4305554470c46aa1d90e104ef9108f81985df0e1 [file] [log] [blame]
Chaohui Wang7477f4e2024-07-26 14:51:33 +08001syntax = "proto2";
2
3package com.android.settings.spa;
4
5message SpaSearchLandingKey {
6 oneof page {
7 SpaSearchLandingSpaPage spa_page = 1;
8 }
9}
10
11message SpaSearchLandingSpaPage {
12 /** The destination of SPA page. */
13 optional string destination = 1;
14}