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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h

Issue 130563003: Change all other AutofillDialogView methods with a const DetailInput& as a param (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 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/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h b/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h
index c44e88ee0db9d80deaea095f9584c2350760d7b2..37119f9b271c6e652f72d8fdca520f6e624e92d3 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h
+++ b/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h
@@ -65,14 +65,13 @@ class AutofillDialogCocoa : public AutofillDialogView,
// http://crbug.com/256864
virtual void SubmitForTesting() OVERRIDE;
virtual void CancelForTesting() OVERRIDE;
- virtual base::string16 GetTextContentsOfInput(
- const DetailInput& input) OVERRIDE;
- virtual void SetTextContentsOfInput(const DetailInput& input,
+ virtual base::string16 GetTextContentsOfInput(ServerFieldType type) OVERRIDE;
+ virtual void SetTextContentsOfInput(ServerFieldType type,
const base::string16& contents) OVERRIDE;
virtual void SetTextContentsOfSuggestionInput(
DialogSection section,
const base::string16& text) OVERRIDE;
- virtual void ActivateInput(const DetailInput& input) OVERRIDE;
+ virtual void ActivateInput(ServerFieldType type) OVERRIDE;
virtual gfx::Size GetSize() const OVERRIDE;
virtual content::WebContents* GetSignInWebContents() OVERRIDE;
virtual bool IsShowingOverlay() const OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698