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

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

Issue 663643002: requestAutocomplete (desktop): don't get stuck in infinite loop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix tests Created 6 years, 2 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_window_controller.h
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_dialog_window_controller.h b/chrome/browser/ui/cocoa/autofill/autofill_dialog_window_controller.h
index a2b8258638797994a06c78b026c52277205db288..ead99211388e173c09de576432daa590de682bac 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_dialog_window_controller.h
+++ b/chrome/browser/ui/cocoa/autofill/autofill_dialog_window_controller.h
@@ -17,6 +17,8 @@
@class AutofillOverlayController;
@class AutofillSignInContainer;
+class GURL;
+
namespace content {
class NavigationController;
class WebContents;
@@ -26,7 +28,6 @@ namespace autofill {
class AutofillDialogCocoa;
} // autofill
-
// Forwarding AutofillDialogView calls.
@protocol AutofillDialogBridge
@@ -38,12 +39,12 @@ class AutofillDialogCocoa;
- (void)updateSection:(autofill::DialogSection)section;
- (void)updateForErrors;
- (void)fillSection:(autofill::DialogSection)section
- forType:(const autofill::ServerFieldType)type;
+ forType:(const autofill::ServerFieldType)type;
- (void)getInputs:(autofill::FieldValueMap*)outputs
forSection:(autofill::DialogSection)section;
- (NSString*)getCvc;
- (BOOL)saveDetailsLocally;
-- (content::NavigationController*)showSignIn;
+- (content::NavigationController*)showSignIn:(const GURL&)url;
- (void)hideSignIn;
- (void)modelChanged;
- (void)updateErrorBubble;

Powered by Google App Engine
This is Rietveld 408576698