Home | History | Annotate | Download | only in ui
      1 package com.android.systemui.recents.events.ui;
      2 
      3 import com.android.systemui.recents.events.EventBus.Event;
      4 
      5 /**
      6  * This event is sent when the user finished dragging in recents.
      7  */
      8 public class DraggingInRecentsEndedEvent extends Event {
      9 
     10     public final float velocity;
     11 
     12     public DraggingInRecentsEndedEvent(float velocity) {
     13         this.velocity = velocity;
     14     }
     15 }
     16