| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package org.chromium.chrome.browser.incognito; | 5 package org.chromium.chrome.browser.incognito; |
| 6 | 6 |
| 7 import android.app.PendingIntent; | 7 import android.app.PendingIntent; |
| 8 import android.app.PendingIntent.CanceledException; | 8 import android.app.PendingIntent.CanceledException; |
| 9 import android.content.Context; | 9 import android.content.Context; |
| 10 import android.test.suitebuilder.annotation.MediumTest; | 10 import android.support.test.filters.MediumTest; |
| 11 import android.util.Pair; | 11 import android.util.Pair; |
| 12 | 12 |
| 13 import org.chromium.base.ThreadUtils; | 13 import org.chromium.base.ThreadUtils; |
| 14 import org.chromium.base.library_loader.LibraryLoader; | 14 import org.chromium.base.library_loader.LibraryLoader; |
| 15 import org.chromium.base.test.util.Feature; | 15 import org.chromium.base.test.util.Feature; |
| 16 import org.chromium.base.test.util.RetryOnFailure; | 16 import org.chromium.base.test.util.RetryOnFailure; |
| 17 import org.chromium.chrome.browser.TabState; | 17 import org.chromium.chrome.browser.TabState; |
| 18 import org.chromium.chrome.browser.profiles.Profile; | 18 import org.chromium.chrome.browser.profiles.Profile; |
| 19 import org.chromium.chrome.browser.tabmodel.TabModel.TabLaunchType; | 19 import org.chromium.chrome.browser.tabmodel.TabModel.TabLaunchType; |
| 20 import org.chromium.chrome.browser.tabmodel.TabPersistentStore; | 20 import org.chromium.chrome.browser.tabmodel.TabPersistentStore; |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 | 180 |
| 181 ThreadUtils.runOnUiThreadBlocking(new Runnable() { | 181 ThreadUtils.runOnUiThreadBlocking(new Runnable() { |
| 182 @Override | 182 @Override |
| 183 public void run() { | 183 public void run() { |
| 184 assertFalse(LibraryLoader.isInitialized()); | 184 assertFalse(LibraryLoader.isInitialized()); |
| 185 } | 185 } |
| 186 }); | 186 }); |
| 187 } | 187 } |
| 188 | 188 |
| 189 } | 189 } |
| OLD | NEW |