Chromium Code Reviews| Index: chrome/browser/ui/cocoa/autofill/autofill_error_bubble_controller.h |
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_error_bubble_controller.h b/chrome/browser/ui/cocoa/autofill/autofill_error_bubble_controller.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..92ba798ab73accd797922933a0de974328a21276 |
| --- /dev/null |
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_error_bubble_controller.h |
| @@ -0,0 +1,28 @@ |
| +// 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_ERROR_BUBBLE_CONTROLLER_H_ |
| +#define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_ERROR_BUBBLE_CONTROLLER_H_ |
| + |
| +#import <Cocoa/Cocoa.h> |
| + |
| +#include "base/mac/scoped_nsobject.h" |
| +#import "chrome/browser/ui/cocoa/base_bubble_controller.h" |
| + |
| +// Bubble controller for field validation error bubbles. |
| +@interface AutofillErrorBubbleController : BaseBubbleController { |
| + base::scoped_nsobject<NSTextField> label_; |
| +} |
| + |
| +// Creates an error bubble with the given |message|. You need to call |
| +// -showWindow: to make the bubble visible. It will autorelease itself when the |
| +// user dismisses the bubble. |
| +- (id)initWithParentWindow:(NSWindow*)parentWindow |
| + message:(NSString*)message; |
| + |
| +@end |
| + |
| + |
| +#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_ERROR_BUBBLE_CONTROLLER_H_ |
| + |
|
Robert Sesek
2013/11/04 23:49:18
nit: remove blank line
groby-ooo-7-16
2013/11/05 00:51:48
Done.
|