Update the deletion helper feature factory for photos and videos.

Bug: 28554187

Change-Id: I7fcc34af87ec17e9396f390d851fd31df1dc951a
This commit is contained in:
Daniel Nishi
2016-05-17 13:33:29 -07:00
parent 1ca6867e35
commit 76cd0118e9
3 changed files with 5 additions and 5 deletions

View File

@@ -16,6 +16,7 @@
package com.android.settings.overlay;
import android.content.Context;
import android.support.v7.preference.PreferenceGroup;
import com.android.settings.deletionhelper.DeletionType;
@@ -26,5 +27,5 @@ public interface DeletionHelperFeatureProvider {
/**
* Creates a {@link DeletionType} for clearing out stored photos and videos on the device.
*/
DeletionType createPhotoVideoDeletionType();
DeletionType createPhotoVideoDeletionType(Context context);
}