summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/cocoa/notifications/balloon_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/cocoa/notifications/balloon_view.h')
-rw-r--r--chrome/browser/ui/cocoa/notifications/balloon_view.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/chrome/browser/ui/cocoa/notifications/balloon_view.h b/chrome/browser/ui/cocoa/notifications/balloon_view.h
new file mode 100644
index 0000000..b742eaf
--- /dev/null
+++ b/chrome/browser/ui/cocoa/notifications/balloon_view.h
@@ -0,0 +1,28 @@
+// 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_UI_COCOA_NOTIFICATIONS_BALLOON_VIEW_H_
+#define CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_BALLOON_VIEW_H_
+#pragma once
+
+#import <Cocoa/Cocoa.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_UI_COCOA_NOTIFICATIONS_BALLOON_VIEW_H_