| 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" |  11 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | 
|  12 #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h" |  12 #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h" | 
 |  13 #include "components/autofill/core/browser/dialog_section.h" | 
|  13  |  14  | 
|  14 @class AutofillHeader; |  15 @class AutofillHeader; | 
|  15 @class AutofillLoadingShieldController; |  16 @class AutofillLoadingShieldController; | 
|  16 @class AutofillMainContainer; |  17 @class AutofillMainContainer; | 
|  17 @class AutofillOverlayController; |  18 @class AutofillOverlayController; | 
|  18 @class AutofillSignInContainer; |  19 @class AutofillSignInContainer; | 
|  19  |  20  | 
|  20 class GURL; |  21 class GURL; | 
|  21  |  22  | 
|  22 namespace content { |  23 namespace content { | 
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  85 // like to use the data. |  86 // like to use the data. | 
|  86 - (IBAction)accept:(id)sender; |  87 - (IBAction)accept:(id)sender; | 
|  87  |  88  | 
|  88 // User canceled the dialog. |  89 // User canceled the dialog. | 
|  89 - (IBAction)cancel:(id)sender; |  90 - (IBAction)cancel:(id)sender; | 
|  90  |  91  | 
|  91 @end |  92 @end | 
|  92  |  93  | 
|  93  |  94  | 
|  94 #endif  // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ |  95 #endif  // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_WINDOW_CONTROLLER_H_ | 
| OLD | NEW |