Home
last modified time | relevance | path

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

/packages/apps/UnifiedEmail/src/com/android/mail/widget/
DBaseWidgetProvider.java303 final Intent updateWidgetIntent = new Intent(ACTION_UPDATE_WIDGET); in updateWidget() local
305 updateWidgetIntent.setType(account.mimeType); in updateWidget()
306 updateWidgetIntent.putExtra(EXTRA_WIDGET_ID, appWidgetId); in updateWidget()
307 updateWidgetIntent.putExtra(Utils.EXTRA_ACCOUNT, account.serialize()); in updateWidget()
308 updateWidgetIntent.putExtra(EXTRA_FOLDER_TYPE, folderType); in updateWidget()
309 updateWidgetIntent.putExtra(EXTRA_FOLDER_CAPABILITIES, folderCapabilities); in updateWidget()
310 updateWidgetIntent.putExtra(EXTRA_FOLDER_URI, folderUri); in updateWidget()
311 updateWidgetIntent.putExtra(EXTRA_FOLDER_CONVERSATION_LIST_URI, folderConversationListUri); in updateWidget()
312 updateWidgetIntent.putExtra(EXTRA_FOLDER_DISPLAY_NAME, folderDisplayName); in updateWidget()
314 context.sendBroadcast(updateWidgetIntent); in updateWidget()