| Index: chrome/browser/ui/cocoa/global_error_bubble_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/global_error_bubble_controller.h b/chrome/browser/ui/cocoa/global_error_bubble_controller.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..085c5d1a2f2e854e6ae75d407265758f7d7dabb8
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/cocoa/global_error_bubble_controller.h
|
| @@ -0,0 +1,23 @@
|
| +// Copyright (c) 2011 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.
|
| +
|
| +#import <Cocoa/Cocoa.h>
|
| +
|
| +#import "chrome/browser/ui/cocoa/base_bubble_controller.h"
|
| +
|
| +class GlobalErrorDelegate;
|
| +
|
| +// Manages the global error bubble.
|
| +@interface GlobalErrorBubbleController : BaseBubbleController {
|
| + @private
|
| + GlobalErrorDelegate* delegate_;
|
| +
|
| + IBOutlet NSImageView* iconView_;
|
| + IBOutlet NSTextField* title_;
|
| + IBOutlet NSTextField* message_;
|
| + IBOutlet NSButton* acceptButton_;
|
| + IBOutlet NSButton* cancelButton_;
|
| +}
|
| +
|
| +@end
|
|
|