diff options
author | pinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-27 16:41:26 +0000 |
---|---|---|
committer | pinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-27 16:41:26 +0000 |
commit | 57af28fffc0dc18403ea16037cd803dd2a84dc40 (patch) | |
tree | 230f5ec30fca4e178c3d1d5ce1b3268686aafb9a /chrome/browser/cocoa/tab_controller_target.h | |
parent | 31f2bff6d9c109d6b4eb91cc0549c9d5b076ed5c (diff) | |
download | chromium_src-57af28fffc0dc18403ea16037cd803dd2a84dc40.zip chromium_src-57af28fffc0dc18403ea16037cd803dd2a84dc40.tar.gz chromium_src-57af28fffc0dc18403ea16037cd803dd2a84dc40.tar.bz2 |
Forgot a file in last checkin.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12657 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/tab_controller_target.h')
-rw-r--r-- | chrome/browser/cocoa/tab_controller_target.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/chrome/browser/cocoa/tab_controller_target.h b/chrome/browser/cocoa/tab_controller_target.h new file mode 100644 index 0000000..14c2ad5 --- /dev/null +++ b/chrome/browser/cocoa/tab_controller_target.h @@ -0,0 +1,14 @@ +// 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_TAB_CONTROLLER_TARGET_H_ +#define CHROME_BROWSER_COCOA_TAB_CONTROLLER_TARGET_H_ + +// A protocol to be implemented by a TabController's target. +@protocol TabControllerTarget +- (void)selectTab:(id)sender; +- (void)closeTab:(id)sender; +@end + +#endif // CHROME_BROWSER_COCOA_TAB_CONTROLLER_TARGET_H_ |