summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/tab_controller_target.h
diff options
context:
space:
mode:
authorpinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-27 16:41:26 +0000
committerpinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-27 16:41:26 +0000
commit57af28fffc0dc18403ea16037cd803dd2a84dc40 (patch)
tree230f5ec30fca4e178c3d1d5ce1b3268686aafb9a /chrome/browser/cocoa/tab_controller_target.h
parent31f2bff6d9c109d6b4eb91cc0549c9d5b076ed5c (diff)
downloadchromium_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.h14
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_