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

Side by Side Diff: chrome/browser/ui/cocoa/autofill/autofill_main_container.h

Issue 974323002: Componentize autofill dialog common code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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_MAIN_CONTAINER_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_MAIN_CONTAINER_H_
6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_MAIN_CONTAINER_H_ 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_MAIN_CONTAINER_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 AutofillDetailsContainer; 14 @class AutofillDetailsContainer;
15 @class AutofillDialogWindowController; 15 @class AutofillDialogWindowController;
16 @class AutofillNotificationContainer; 16 @class AutofillNotificationContainer;
17 @class AutofillSectionContainer; 17 @class AutofillSectionContainer;
18 @class AutofillTooltipController; 18 @class AutofillTooltipController;
19 @class GTMWidthBasedTweaker; 19 @class GTMWidthBasedTweaker;
20 @class HyperlinkTextView; 20 @class HyperlinkTextView;
21 21
22 namespace autofill { 22 namespace autofill {
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 // AutofillMainContainer helper functions, for testing purposes only. 99 // AutofillMainContainer helper functions, for testing purposes only.
100 @interface AutofillMainContainer (Testing) 100 @interface AutofillMainContainer (Testing)
101 101
102 @property(readonly, nonatomic) NSButton* saveInChromeCheckboxForTesting; 102 @property(readonly, nonatomic) NSButton* saveInChromeCheckboxForTesting;
103 @property(readonly, nonatomic) NSImageView* buttonStripImageForTesting; 103 @property(readonly, nonatomic) NSImageView* buttonStripImageForTesting;
104 @property(readonly, nonatomic) NSImageView* saveInChromeTooltipForTesting; 104 @property(readonly, nonatomic) NSImageView* saveInChromeTooltipForTesting;
105 105
106 @end 106 @end
107 107
108 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_MAIN_CONTAINER_H_ 108 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_MAIN_CONTAINER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698