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

Side by Side Diff: chrome/browser/ui/cocoa/notifications/balloon_view.h

Issue 231213003: notification balloons: Remove views and cocoa implementations of BalloonCollection. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 8 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) 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.
4
5 #ifndef CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_VIEW_H_
6 #define CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_VIEW_H_
7
8 #import <Cocoa/Cocoa.h>
9
10 @interface BalloonWindow : NSWindow {
11 }
12 @end
13
14 // This view class draws a frame around the HTML contents of a
15 // notification balloon.
16 @interface BalloonContentViewCocoa : NSView {
17 }
18 @end
19
20 // This view class draws the shelf of a notification balloon,
21 // containing the controls.
22 @interface BalloonShelfViewCocoa : NSView {
23 }
24 @end
25
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 {
30 }
31 @end
32
33
34 #endif // CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698