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

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/autofill/AutofillTest.java

Issue 2665433002: [Merge M57] Use uniform margin for icon, label and sublabel (Closed)
Patch Set: Created 3 years, 11 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/autofill/AutofillTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/AutofillTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/AutofillTest.java
index 9b7e6a090631e2e775d7e0a9d947938132d02e44..ce63c66fb7d6707fdf971fbcb316eae5b84f20ef 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/AutofillTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/AutofillTest.java
@@ -70,7 +70,8 @@ public class AutofillTest extends ChromeActivityTestCaseBase<ChromeActivity> {
mAutofillPopup = new AutofillPopup(activity, anchorView, mMockAutofillCallback);
mAutofillPopup.filterAndShow(new AutofillSuggestion[0], false /* isRtl */,
Color.TRANSPARENT /* backgroundColor */,
- Color.TRANSPARENT /* dividerColor */, 0 /* dropdownItemHeight */);
+ Color.TRANSPARENT /* dividerColor */, 0 /* dropdownItemHeight */,
+ 0 /* margin */);
}
});
}
@@ -137,7 +138,8 @@ public class AutofillTest extends ChromeActivityTestCaseBase<ChromeActivity> {
public void run() {
mAutofillPopup.filterAndShow(suggestions, false /* isRtl */,
Color.TRANSPARENT /* backgroundColor */,
- Color.TRANSPARENT /* dividerColor */, 0 /* dropdownItemHeight */);
+ Color.TRANSPARENT /* dividerColor */, 0 /* dropdownItemHeight */,
+ 0 /* margin */);
}
});
CriteriaHelper.pollInstrumentationThread(new Criteria() {
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillPopupBridge.java ('k') | chrome/browser/about_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698