Home | History | Annotate | Download | only in logging
      1 /*
      2  * Copyright (C) 2014 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 
     17 
     18 package com.google.common.logging;
     19 
     20 public class eventprotos {
     21     public class MediaInteraction {
     22         public class InteractionType {
     23             public static final int SHARE = 10000;
     24             public static final int EDIT = 10000;
     25             public static final int DELETE = 10000;
     26             public static final int DETAILS = 10000;
     27         }
     28     }
     29 
     30     public class NavigationChange {
     31         public class InteractionCause {
     32             public static final int BUTTON = 10000;
     33             public static final int SWIPE_LEFT = 10000;
     34             public static final int SWIPE_UP = 10000;
     35             public static final int SWIPE_DOWN = 10000;
     36             public static final int SWIPE_RIGHT = 10000;
     37         }
     38         public class Mode {
     39             public static final int UNKNOWN_MODE = 10000;
     40             public static final int PHOTO_CAPTURE = 10000;
     41             public static final int FILMSTRIP = 10000;
     42             public static final int VIDEO_CAPTURE = 10000;
     43             public static final int VIDEO_STILL = 10000;
     44             public static final int PHOTO_SPHERE = 10000;
     45             public static final int LENS_BLUR = 10000;
     46             public static final int HDR_PLUS = 10000;
     47             public static final int PANORAMA = 10000;
     48             public static final int GALLERY = 10000;
     49         }
     50     }
     51 
     52     public class CameraFailure {
     53         public class FailureReason {
     54             public static final int UNKNOWN_REASON = 10000;
     55             public static final int SECURITY = 10000;
     56             public static final int OPEN_FAILURE = 10000;
     57             public static final int RECONNECT_FAILURE = 10000;
     58             public static final int API_RUNTIME_EXCEPTION = 10000;
     59             public static final int API_TIMEOUT = 10000;
     60         }
     61     }
     62 
     63     public class ForegroundEvent {
     64         public class ForegroundSource {
     65             public static final int UNKNOWN_SOURCE = 10000;
     66             public static final int ACTION_IMAGE_CAPTURE = 10000;
     67             public static final int ACTION_IMAGE_CAPTURE_SECURE = 10000;
     68             public static final int ACTION_VIDEO_CAPTURE = 10000;
     69             public static final int ACTION_MAIN = 10000;
     70             public static final int ACTION_STILL_IMAGE_CAMERA_SECURE = 10000;
     71             public static final int ACTION_VIDEO_CAMERA = 10000;
     72             public static final int ACTION_STILL_IMAGE_CAMERA = 10000;
     73         }
     74     }
     75 
     76     public class ControlEvent {
     77         public class ControlType {
     78             public static final int TAP_TO_FOCUS = 10000;
     79             public static final int MENU_FULL_FROM_HIDDEN = 10000;
     80             public static final int MENU_FULL_FROM_SCROLL = 10000;
     81             public static final int MENU_SCROLL_FROM_SHIMMY = 10000;
     82             public static final int OVERALL_SETTINGS = 10000;
     83         }
     84     }
     85 }
     86