Loading core/java/com/android/internal/widget/LockPatternUtils.java +4 −6 Original line number Diff line number Diff line Loading @@ -438,10 +438,9 @@ public class LockPatternUtils { * Calls back SetupFaceLock to delete the temporary gallery file */ public void deleteTempGallery() { Intent intent = new Intent().setClassName("com.android.facelock", "com.android.facelock.SetupFaceLock"); Intent intent = new Intent().setAction("com.android.facelock.DELETE_GALLERY"); intent.putExtra("deleteTempGallery", true); mContext.startActivity(intent); mContext.sendBroadcast(intent); } /** Loading @@ -449,10 +448,9 @@ public class LockPatternUtils { */ void deleteGallery() { if(usingBiometricWeak()) { Intent intent = new Intent().setClassName("com.android.facelock", "com.android.facelock.SetupFaceLock"); Intent intent = new Intent().setAction("com.android.facelock.DELETE_GALLERY"); intent.putExtra("deleteGallery", true); mContext.startActivity(intent); mContext.sendBroadcast(intent); } } Loading Loading
core/java/com/android/internal/widget/LockPatternUtils.java +4 −6 Original line number Diff line number Diff line Loading @@ -438,10 +438,9 @@ public class LockPatternUtils { * Calls back SetupFaceLock to delete the temporary gallery file */ public void deleteTempGallery() { Intent intent = new Intent().setClassName("com.android.facelock", "com.android.facelock.SetupFaceLock"); Intent intent = new Intent().setAction("com.android.facelock.DELETE_GALLERY"); intent.putExtra("deleteTempGallery", true); mContext.startActivity(intent); mContext.sendBroadcast(intent); } /** Loading @@ -449,10 +448,9 @@ public class LockPatternUtils { */ void deleteGallery() { if(usingBiometricWeak()) { Intent intent = new Intent().setClassName("com.android.facelock", "com.android.facelock.SetupFaceLock"); Intent intent = new Intent().setAction("com.android.facelock.DELETE_GALLERY"); intent.putExtra("deleteGallery", true); mContext.startActivity(intent); mContext.sendBroadcast(intent); } } Loading