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

Unified Diff: chrome/android/junit/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuPopulatorTest.java

Issue 2946223002: Replaces FullscreenActivity with SingleTabActivity. (Closed)
Patch Set: Removes the WebContentsObserver on reparenting in FullscreenWebContentsActivity Created 3 years, 5 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
« no previous file with comments | « chrome/android/java_sources.gni ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/junit/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuPopulatorTest.java
diff --git a/chrome/android/junit/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuPopulatorTest.java b/chrome/android/junit/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuPopulatorTest.java
index 21b36d1d0e838909e75bbffe5228da408322b6b0..85d7f58ac45313c522625905f19f055eccb80d88 100644
--- a/chrome/android/junit/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuPopulatorTest.java
+++ b/chrome/android/junit/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuPopulatorTest.java
@@ -84,7 +84,7 @@ public class ChromeContextMenuPopulatorTest {
enabledItems = getEnabledItems(contextMenuParams);
Assert.assertThat(enabledItems, Matchers.contains(ChromeContextMenuItem.COPY_LINK_ADDRESS));
- initializePopulator(ChromeContextMenuPopulator.FULLSCREEN_TAB_MODE);
+ initializePopulator(ChromeContextMenuPopulator.WEB_APP_MODE);
enabledItems = getEnabledItems(contextMenuParams);
Assert.assertThat(enabledItems, Matchers.contains(ChromeContextMenuItem.COPY_LINK_ADDRESS));
}
@@ -102,7 +102,7 @@ public class ChromeContextMenuPopulatorTest {
enabledItems = getEnabledItems(contextMenuParams);
Assert.assertThat(enabledItems, Matchers.empty());
- initializePopulator(ChromeContextMenuPopulator.FULLSCREEN_TAB_MODE);
+ initializePopulator(ChromeContextMenuPopulator.WEB_APP_MODE);
enabledItems = getEnabledItems(contextMenuParams);
Assert.assertThat(enabledItems, Matchers.empty());
}
@@ -122,7 +122,7 @@ public class ChromeContextMenuPopulatorTest {
Assert.assertThat(
enabledItems, Matchers.containsInAnyOrder(ChromeContextMenuItem.COPY_LINK_ADDRESS));
- initializePopulator(ChromeContextMenuPopulator.FULLSCREEN_TAB_MODE);
+ initializePopulator(ChromeContextMenuPopulator.WEB_APP_MODE);
enabledItems = getEnabledItems(contextMenuParams);
Assert.assertThat(
enabledItems, Matchers.containsInAnyOrder(ChromeContextMenuItem.COPY_LINK_ADDRESS));
« no previous file with comments | « chrome/android/java_sources.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698