Home | History | Annotate | Download | only in activitygraphs

Lines Matching refs:activity

18 import android.app.Activity;
23 * A module to wrap the Activity state and expose it to the graph.
27 private final Activity activity;
29 public ActivityModule(Activity activity) {
30 this.activity = activity;
34 * Expose the activity to dependents in the graph.
36 @Provides @PerActivity Activity activity() {
37 return activity;