1 // Copyright (c) 2010 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.
5 #ifndef CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_VIEW_H_
6 #define CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_VIEW_H_
8 #import <Cocoa/Cocoa.h>
10 @interface BalloonWindow
: NSWindow
{
14 // This view class draws a frame around the HTML contents of a
15 // notification balloon.
16 @interface BalloonContentViewCocoa
: NSView
{
20 // This view class draws the shelf of a notification balloon,
21 // containing the controls.
22 @interface BalloonShelfViewCocoa
: NSView
{
26 // This view overlays the notification balloon on top. It is used to intercept
27 // mouse input to prevent reordering of the other browser windows when clicking
28 // on the notification balloon.
29 @interface BalloonOverlayViewCocoa
: NSView
{
34 #endif // CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_VIEW_H_