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

Side by Side Diff: chrome/browser/ui/cocoa/global_error_bubble_controller.h

Issue 7857014: patch for global error bubbles (view/gtk) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #import <Cocoa/Cocoa.h>
6
7 #import "chrome/browser/ui/cocoa/base_bubble_controller.h"
8
9 class GlobalErrorDelegate;
10
11 // Manages the global error bubble.
12 @interface GlobalErrorBubbleController : BaseBubbleController {
13 @private
14 GlobalErrorDelegate* delegate_;
15
16 IBOutlet NSImageView* iconView_;
17 IBOutlet NSTextField* title_;
18 IBOutlet NSTextField* message_;
19 IBOutlet NSButton* acceptButton_;
20 IBOutlet NSButton* cancelButton_;
21 }
22
23 @end
OLDNEW
« no previous file with comments | « chrome/browser/ui/browser_init.cc ('k') | chrome/browser/ui/cocoa/global_error_bubble_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698