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

Unified Diff: chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa_unittest.mm

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/cocoa/autofill/password_generation_popup_view_cocoa_unittest.mm
diff --git a/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa_unittest.mm b/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa_unittest.mm
index de9d361fb9e88749a2a321bcea06bc201e8ce6c9..01f29f92bc61dbf14f87f4d3f9ac0bc7e0e393ae 100644
--- a/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa_unittest.mm
+++ b/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa_unittest.mm
@@ -62,8 +62,8 @@ class MockPasswordGenerationPopupController
MOCK_CONST_METHOD0(element_bounds, gfx::RectF&());
MOCK_CONST_METHOD0(IsRTL, bool());
MOCK_METHOD0(GetSuggestions, const std::vector<autofill::Suggestion>());
- MOCK_METHOD1(GetElidedValueWidthForRow, int(size_t));
- MOCK_METHOD1(GetElidedLabelWidthForRow, int(size_t));
+ MOCK_METHOD1(GetElidedValueWidthForRow, int(int));
+ MOCK_METHOD1(GetElidedLabelWidthForRow, int(int));
private:
base::string16 help_text_;

Powered by Google App Engine
This is Rietveld 408576698