summaryrefslogtreecommitdiffstats
path: root/src_pd/com/google/common/logging/eventprotos.java
blob: 7b0450588bef702ec4051e26443d1c57efa054c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * Copyright (C) 2014 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


package com.google.common.logging;

public class eventprotos {
    public class MediaInteraction {
        public class InteractionType {
            public static final int SHARE = 10000;
            public static final int EDIT = 10000;
            public static final int DELETE = 10000;
            public static final int DETAILS = 10000;
        }
    }

    public class NavigationChange {
        public class InteractionCause {
            public static final int BUTTON = 10000;
            public static final int SWIPE_LEFT = 10000;
            public static final int SWIPE_UP = 10000;
            public static final int SWIPE_DOWN = 10000;
            public static final int SWIPE_RIGHT = 10000;
        }
        public class Mode {
            public static final int UNKNOWN_MODE = 10000;
            public static final int PHOTO_CAPTURE = 10000;
            public static final int FILMSTRIP = 10000;
            public static final int VIDEO_CAPTURE = 10000;
            public static final int VIDEO_STILL = 10000;
            public static final int PHOTO_SPHERE = 10000;
            public static final int LENS_BLUR = 10000;
            public static final int HDR_PLUS = 10000;
            public static final int PANORAMA = 10000;
            public static final int GALLERY = 10000;
        }
    }

    public class CameraFailure {
        public class FailureReason {
            public static final int UNKNOWN_REASON = 10000;
            public static final int SECURITY = 10000;
            public static final int OPEN_FAILURE = 10000;
            public static final int RECONNECT_FAILURE = 10000;
            public static final int API_RUNTIME_EXCEPTION = 10000;
            public static final int API_TIMEOUT = 10000;
        }
    }

    public class ForegroundEvent {
        public class ForegroundSource {
            public static final int UNKNOWN_SOURCE = 10000;
            public static final int ACTION_IMAGE_CAPTURE = 10000;
            public static final int ACTION_IMAGE_CAPTURE_SECURE = 10000;
            public static final int ACTION_VIDEO_CAPTURE = 10000;
            public static final int ACTION_MAIN = 10000;
            public static final int ACTION_STILL_IMAGE_CAMERA_SECURE = 10000;
            public static final int ACTION_VIDEO_CAMERA = 10000;
            public static final int ACTION_STILL_IMAGE_CAMERA = 10000;
        }
    }

    public class ControlEvent {
        public class ControlType {
            public static final int TAP_TO_FOCUS = 10000;
            public static final int MENU_FULL_FROM_HIDDEN = 10000;
            public static final int MENU_FULL_FROM_SCROLL = 10000;
            public static final int MENU_SCROLL_FROM_SHIMMY = 10000;
            public static final int OVERALL_SETTINGS = 10000;
        }
    }
}