1 package com.android.wm.shell.common.annotations;
2 
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Inherited;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.RetentionPolicy;
7 
8 import javax.inject.Qualifier;
9 
10 /**
11  * Annotates a method that or qualifies a provider runs aligned to the Choreographer SF vsync
12  * instead of the app vsync.
13  */
14 @Documented
15 @Inherited
16 @Qualifier
17 @Retention(RetentionPolicy.RUNTIME)
18 public @interface ChoreographerSfVsync {}