| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
| 11 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | |
| 12 #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h" | 11 #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h" |
| 12 #include "components/autofill/core/browser/ui/autofill_dialog_types.h" |
| 13 | 13 |
| 14 @class AutofillHeader; | 14 @class AutofillHeader; |
| 15 @class AutofillLoadingShieldController; | 15 @class AutofillLoadingShieldController; |
| 16 @class AutofillMainContainer; | 16 @class AutofillMainContainer; |
| 17 @class AutofillOverlayController; | 17 @class AutofillOverlayController; |
| 18 @class AutofillSignInContainer; | 18 @class AutofillSignInContainer; |
| 19 | 19 |
| 20 class GURL; | 20 class GURL; |
| 21 | 21 |
| 22 namespace content { | 22 namespace content { |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 // like to use the data. | 85 // like to use the data. |
| 86 - (IBAction)accept:(id)sender; | 86 - (IBAction)accept:(id)sender; |
| 87 | 87 |
| 88 // User canceled the dialog. | 88 // User canceled the dialog. |
| 89 - (IBAction)cancel:(id)sender; | 89 - (IBAction)cancel:(id)sender; |
| 90 | 90 |
| 91 @end | 91 @end |
| 92 | 92 |
| 93 | 93 |
| 94 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ | 94 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ |
| OLD | NEW |