Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3819)

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/incognito/IncognitoNotificationService.java

Issue 1847063003: Show the close all incognito notification for tabbed mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Check null for file info Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/src/org/chromium/chrome/browser/incognito/IncognitoNotificationService.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/incognito/IncognitoNotificationService.java b/chrome/android/java/src/org/chromium/chrome/browser/incognito/IncognitoNotificationService.java
new file mode 100644
index 0000000000000000000000000000000000000000..150234332f1f4d188d53bca23e868f4be8d94cdb
--- /dev/null
+++ b/chrome/android/java/src/org/chromium/chrome/browser/incognito/IncognitoNotificationService.java
@@ -0,0 +1,138 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.chrome.browser.incognito;
+
+import android.app.Activity;
+import android.app.IntentService;
+import android.app.PendingIntent;
+import android.content.Context;
+import android.content.Intent;
+import android.util.Pair;
+
+import org.chromium.base.ApplicationStatus;
+import org.chromium.base.ThreadUtils;
+import org.chromium.base.VisibleForTesting;
+import org.chromium.chrome.browser.ChromeApplication;
+import org.chromium.chrome.browser.ChromeTabbedActivity;
+import org.chromium.chrome.browser.TabState;
+import org.chromium.chrome.browser.tabmodel.TabPersistentStore;
+import org.chromium.chrome.browser.tabmodel.TabWindowManager;
+import org.chromium.chrome.browser.util.FeatureUtilities;
+
+import java.io.File;
+import java.lang.ref.WeakReference;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.concurrent.Callable;
+
+/**
+ * Service that handles the action of clicking on the incognito notification.
+ */
+public class IncognitoNotificationService extends IntentService {
+
+ private static final String TAG = "incognito_notification";
+
+ private static final String ACTION_CLOSE_ALL_INCOGNITO =
+ "com.google.android.apps.chrome.document.CLOSE_ALL_INCOGNITO";
gone 2016/04/01 17:35:22 Assuming that the notification goes away on upgrad
Ted C 2016/04/01 22:13:31 It dismissed with an overinstall using install -r,
+
+ @VisibleForTesting
+ public static PendingIntent getRemoveAllIncognitoTabsIntent(Context context) {
+ Intent intent = new Intent(context, IncognitoNotificationService.class);
+ intent.setAction(ACTION_CLOSE_ALL_INCOGNITO);
+ return PendingIntent.getService(context, 0, intent, PendingIntent.FLAG_ONE_SHOT);
+ }
+
+ /** Empty public constructor needed by Android. */
+ public IncognitoNotificationService() {
+ super(TAG);
+ }
+
+ @Override
+ protected void onHandleIntent(Intent intent) {
+ boolean isDocumentMode = ThreadUtils.runOnUiThreadBlockingNoException(
+ new Callable<Boolean>() {
+ @Override
+ public Boolean call() throws Exception {
+ return FeatureUtilities.isDocumentMode(IncognitoNotificationService.this);
+ }
+ });
+
+ if (isDocumentMode) {
+ ThreadUtils.runOnUiThreadBlocking(new Runnable() {
gone 2016/04/01 17:35:22 TODO(dfalcantara): Delete this?
Ted C 2016/04/01 22:13:31 Done.
+ @Override
+ public void run() {
+ ChromeApplication.getDocumentTabModelSelector().getModel(true).closeAllTabs();
+ }
+ });
+ } else {
+ List<Integer> processedSelectors = closeIncognitoTabsInRunningTabbedActivities();
+
+ for (int i = 0; i < TabWindowManager.MAX_SIMULTANEOUS_SELECTORS; i++) {
+ if (processedSelectors.contains(i)) continue;
+ deleteIncognitoStateFilesInDirectory(TabPersistentStore.getStateDirectory(this, i));
+ }
+ }
+
+ ThreadUtils.runOnUiThreadBlocking(new Runnable() {
+ @Override
+ public void run() {
+ int incognitoCount = TabWindowManager.getInstance().getIncognitoTabCount();
+ assert incognitoCount == 0;
+
+ if (incognitoCount == 0) {
+ IncognitoNotificationManager.dismissIncognitoNotification();
+ }
+ }
+ });
+ }
+
+ /**
+ * Iterate across the running activities and for any running tabbed mode activities close their
+ * incognito tabs.
+ *
+ * @return The list of window indexes that were processed.
+ *
+ * @see TabWindowManager#getIndexForWindow(Activity)
+ */
+ private List<Integer> closeIncognitoTabsInRunningTabbedActivities() {
+ return ThreadUtils.runOnUiThreadBlockingNoException(
+ new Callable<List<Integer>>() {
+ @Override
+ public List<Integer> call() {
+ List<Integer> selectorIndexes = new ArrayList<>();
+
+ List<WeakReference<Activity>> runningActivities =
+ ApplicationStatus.getRunningActivities();
+ for (int i = 0; i < runningActivities.size(); i++) {
+ Activity activity = runningActivities.get(i).get();
+ if (activity == null) continue;
+ if (!(activity instanceof ChromeTabbedActivity)) continue;
+
+ ChromeTabbedActivity tabbedActivity = (ChromeTabbedActivity) activity;
+ if (tabbedActivity.isActivityDestroyed()) continue;
+
+ tabbedActivity.getTabModelSelector().getModel(true).closeAllTabs();
+ selectorIndexes.add(TabWindowManager.getInstance().getIndexForWindow(
+ tabbedActivity));
+ }
+
+ return selectorIndexes;
+ }
+ });
+ }
+
+ private void deleteIncognitoStateFilesInDirectory(File directory) {
+ File[] allTabStates = directory.listFiles();
+ if (allTabStates == null) return;
+
+ for (int i = 0; i < allTabStates.length; i++) {
+ String fileName = allTabStates[i].getName();
+ Pair<Integer, Boolean> tabInfo = TabState.parseInfoFromFilename(fileName);
+ if (tabInfo == null || !tabInfo.second) continue;
+ allTabStates[i].delete();
+ }
+ }
+
+}

Powered by Google App Engine
This is Rietveld 408576698