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

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/contextmenu/TabularContextMenuUiTest.java

Issue 2777773002: Show the image header for the Context Menu (Closed)
Patch Set: Why be public when you can be private Created 3 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/javatests/src/org/chromium/chrome/browser/contextmenu/TabularContextMenuUiTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/contextmenu/TabularContextMenuUiTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/contextmenu/TabularContextMenuUiTest.java
index 745fd5d0123c3f4f30cb523008910bb0d91607af..c6f8ba8e2ae66ee8c52d9b8a19dd9b59e09aa294 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/contextmenu/TabularContextMenuUiTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/contextmenu/TabularContextMenuUiTest.java
@@ -113,7 +113,7 @@ public class TabularContextMenuUiTest extends ChromeActivityTestCaseBase<ChromeA
@Override
public View call() {
return dialog.createContextMenuPageUi(
- getActivity(), new MockMenuParams(expectedUrl), item, item.size());
+ getActivity(), new MockMenuParams(expectedUrl), item, false, item.size());
}
});
@@ -132,7 +132,7 @@ public class TabularContextMenuUiTest extends ChromeActivityTestCaseBase<ChromeA
@Override
public View call() {
return dialog.createContextMenuPageUi(
- getActivity(), new MockMenuParams(""), item, item.size());
+ getActivity(), new MockMenuParams(""), item, false, item.size());
}
});
@@ -150,8 +150,8 @@ public class TabularContextMenuUiTest extends ChromeActivityTestCaseBase<ChromeA
View view = ThreadUtils.runOnUiThreadBlocking(new Callable<View>() {
@Override
public View call() {
- return dialog.createContextMenuPageUi(
- getActivity(), new MockMenuParams("http://google.com"), item, item.size());
+ return dialog.createContextMenuPageUi(getActivity(),
+ new MockMenuParams("http://google.com"), item, false, item.size());
}
});

Powered by Google App Engine
This is Rietveld 408576698