FileDocCategorySizeDatePackage
EventLogTags.javaAPI DocAndroid 5.1 API1425Fri Mar 13 20:31:04 GMT 2015android.webkit;

EventLogTags

public class EventLogTags extends Object
hide

Fields Summary
public static final int
BROWSER_ZOOM_LEVEL_CHANGE
70101 browser_zoom_level_change (start level|1|5),(end level|1|5),(time|2|3)
public static final int
BROWSER_DOUBLE_TAP_DURATION
70102 browser_double_tap_duration (duration|1|3),(time|2|3)
public static final int
BROWSER_SNAP_CENTER
70150 browser_snap_center
public static final int
EXP_DET_ATTEMPT_TO_CALL_OBJECT_GETCLASS
70151 exp_det_attempt_to_call_object_getclass (app_signature|3)
Constructors Summary
private EventLogTags()

 
Methods Summary
public static voidwriteBrowserDoubleTapDuration(int duration, long time)

    android.util.EventLog.writeEvent(BROWSER_DOUBLE_TAP_DURATION, duration, time);
  
public static voidwriteBrowserSnapCenter()

    android.util.EventLog.writeEvent(BROWSER_SNAP_CENTER);
  
public static voidwriteBrowserZoomLevelChange(int startLevel, int endLevel, long time)


           
    android.util.EventLog.writeEvent(BROWSER_ZOOM_LEVEL_CHANGE, startLevel, endLevel, time);
  
public static voidwriteExpDetAttemptToCallObjectGetclass(java.lang.String appSignature)

    android.util.EventLog.writeEvent(EXP_DET_ATTEMPT_TO_CALL_OBJECT_GETCLASS, appSignature);