1/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17syntax = "proto2";
18package android.stats.style;
19option java_multiple_files = true;
20
21enum Action {
22    DEFAULT_ACTION = 0;
23    ONRESUME = 1;
24    ONSTOP = 2;
25    PICKER_SELECT = 3;
26    PICKER_APPLIED = 4;
27    WALLPAPER_OPEN_CATEGORY = 5;
28    WALLPAPER_SELECT = 6;
29    WALLPAPER_APPLIED = 7;
30    WALLPAPER_EXPLORE = 8;
31    WALLPAPER_DOWNLOAD = 9;
32    WALLPAPER_REMOVE = 10;
33    LIVE_WALLPAPER_DOWNLOAD_SUCCESS = 11;
34    LIVE_WALLPAPER_DOWNLOAD_FAILED = 12;
35    LIVE_WALLPAPER_DOWNLOAD_CANCELLED = 13;
36    LIVE_WALLPAPER_DELETE_SUCCESS = 14;
37    LIVE_WALLPAPER_DELETE_FAILED = 15;
38    LIVE_WALLPAPER_APPLIED = 16;
39}
40
41enum LocationPreference {
42    LOCATION_PREFERENCE_UNSPECIFIED = 0;
43    LOCATION_UNAVAILABLE = 1;
44    LOCATION_CURRENT = 2;
45    LOCATION_MANUAL = 3;
46}
47