package com.vgrec.espressoexamples.provider;
import android.content.SearchRecentSuggestionsProvider;
/**
* @author vgrec, created on 3/18/15.
*/
public class AppRecentSearchesProvider extends SearchRecentSuggestionsProvider {
public final static String AUTHORITY = "com.vgrec.espressoexamples";
public final static int MODE = DATABASE_MODE_QUERIES;
public AppRecentSearchesProvider() {
setupSuggestions(AUTHORITY, MODE);
}
}