diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-17 16:01:15 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-17 16:01:15 +0000 |
commit | d679d4ea85aedcc22ccf7610146e77c15f9d7ac1 (patch) | |
tree | c0ddc8e569c087ccd95cdd13a2206c0e3e221509 /chrome/browser/cocoa/sad_tab_view.h | |
parent | d55bf642d70dc4882644f839ec1592e9591da0ba (diff) | |
download | chromium_src-d679d4ea85aedcc22ccf7610146e77c15f9d7ac1.zip chromium_src-d679d4ea85aedcc22ccf7610146e77c15f9d7ac1.tar.gz chromium_src-d679d4ea85aedcc22ccf7610146e77c15f9d7ac1.tar.bz2 |
Sad Tab view for the Mac.
Review URL: http://codereview.chromium.org/20334
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9876 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/sad_tab_view.h')
-rw-r--r-- | chrome/browser/cocoa/sad_tab_view.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/chrome/browser/cocoa/sad_tab_view.h b/chrome/browser/cocoa/sad_tab_view.h new file mode 100644 index 0000000..ffe57a5 --- /dev/null +++ b/chrome/browser/cocoa/sad_tab_view.h @@ -0,0 +1,22 @@ +// Copyright (c) 2009 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_SAD_TAB_VIEW_H_ +#define CHROME_BROWSER_COCOA_SAD_TAB_VIEW_H_ + +#include "chrome/browser/cocoa/event_view.h" + +#import <Cocoa/Cocoa.h> + +// A view that displays the "sad tab". + +@interface SadTabView : EventView { + @private +} + +// Designated initializer is -initWithFrame: . + +@end + +#endif // CHROME_BROWSER_COCOA_SAD_TAB_VIEW_H_ |