blob: 95d3e695df1869821977e5eb82fe9775c04b345c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright (c) 2010 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_COCOA_NOTIFICATIONS_BALLOON_VIEW_H_
#define CHROME_BROWSER_COCOA_NOTIFICATIONS_BALLOON_VIEW_H_
#import <Cocoa/Cocoa.h>
#include "base/scoped_nsobject.h"
@interface BalloonWindow : NSWindow {
}
@end
// This view class draws a frame around the HTML contents of a
// notification balloon.
@interface BalloonContentViewCocoa : NSView {
}
@end
// This view class draws the shelf of a notification balloon,
// containing the controls.
@interface BalloonShelfViewCocoa : NSView {
}
@end
#endif // CHROME_BROWSER_COCOA_NOTIFICATIONS_BALLOON_VIEW_H_
|