Home
last modified time | relevance | path

Searched refs:callDial (Results 1 – 1 of 1) sorted by relevance

/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
DCrossProfileIntentFiltersHelper.java82 IntentFilter callDial = new IntentFilter(); in setFilters() local
83 callDial.addAction(Intent.ACTION_DIAL); in setFilters()
84 callDial.addAction(Intent.ACTION_CALL); in setFilters()
85 callDial.addAction(Intent.ACTION_VIEW); in setFilters()
86 callDial.addCategory(Intent.CATEGORY_DEFAULT); in setFilters()
87 callDial.addCategory(Intent.CATEGORY_BROWSABLE); in setFilters()
88 callDial.addDataScheme("tel"); in setFilters()
89 callDial.addDataScheme("sip"); in setFilters()
90 pm.addCrossProfileIntentFilter(callDial, managedProfileUserId, parentUserId, 0); in setFilters()