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

Unified Diff: chrome/browser/ui/views/autofill/autofill_popup_base_view_browsertest.cc

Issue 2727233003: Uses child views in Autofill Popup so we can trigger (Closed)
Patch Set: (int) to NSInteger 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/browser/ui/views/autofill/autofill_popup_base_view_browsertest.cc
diff --git a/chrome/browser/ui/views/autofill/autofill_popup_base_view_browsertest.cc b/chrome/browser/ui/views/autofill/autofill_popup_base_view_browsertest.cc
index eede10c65f31d8281a2aa2bf30dbb437867271cc..d23716a03cfff0c2ebf1dc83c7697653f6507202 100644
--- a/chrome/browser/ui/views/autofill/autofill_popup_base_view_browsertest.cc
+++ b/chrome/browser/ui/views/autofill/autofill_popup_base_view_browsertest.cc
@@ -38,8 +38,8 @@ class MockAutofillPopupViewDelegate : public AutofillPopupViewDelegate {
MOCK_CONST_METHOD0(IsRTL, bool());
MOCK_METHOD0(GetSuggestions, const std::vector<autofill::Suggestion>());
#if !defined(OS_ANDROID)
- MOCK_METHOD1(GetElidedValueWidthForRow, int(size_t));
- MOCK_METHOD1(GetElidedLabelWidthForRow, int(size_t));
+ MOCK_METHOD1(GetElidedValueWidthForRow, int(int));
+ MOCK_METHOD1(GetElidedLabelWidthForRow, int(int));
#endif
};

Powered by Google App Engine
This is Rietveld 408576698