Chromium Code Reviews| Index: chrome/browser/ui/cocoa/autofill/autofill_pop_up_button.h |
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_pop_up_button.h b/chrome/browser/ui/cocoa/autofill/autofill_pop_up_button.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..34a7b3bc9f0cff0b32675a7e9c03008728d34f57 |
| --- /dev/null |
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_pop_up_button.h |
| @@ -0,0 +1,27 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POP_UP_BUTTON_H_ |
| +#define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POP_UP_BUTTON_H_ |
| + |
| +#import <Cocoa/Cocoa.h> |
| + |
| +#include "chrome/browser/ui/cocoa/autofill/autofill_input_field.h" |
| + |
| +@interface AutofillPopUpButton : NSPopUpButton<AutofillInputField> |
| + |
| +@property(assign, nonatomic) BOOL invalid; |
|
sail
2013/06/28 03:08:56
don't need to declare this since it's declared in
groby-ooo-7-16
2013/06/28 18:49:52
Done.
|
| + |
| +@end |
| + |
| +@interface AutofillPopUpCell : NSPopUpButtonCell<AutofillInputField> { |
| + @private |
| + BOOL invalid_; |
| +} |
| + |
| +@property(assign, nonatomic) BOOL invalid; |
|
sail
2013/06/28 03:08:56
same, don't need to declare this
groby-ooo-7-16
2013/06/28 18:49:52
Done.
|
| + |
| +@end |
| + |
| +#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POP_UP_BUTTON_H_ |