summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/tab_contents_controller.h
diff options
context:
space:
mode:
authorpinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-06 20:32:34 +0000
committerpinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-06 20:32:34 +0000
commitda90ffdff909ac442444c6d7b8ec9a2a15d8f01a (patch)
treeaf443280d67276ae0fe4e8cf007e23c7d2db6894 /chrome/browser/cocoa/tab_contents_controller.h
parentceac4d2624abac6f223f99e4a3a6147723b3b1e3 (diff)
downloadchromium_src-da90ffdff909ac442444c6d7b8ec9a2a15d8f01a.zip
chromium_src-da90ffdff909ac442444c6d7b8ec9a2a15d8f01a.tar.gz
chromium_src-da90ffdff909ac442444c6d7b8ec9a2a15d8f01a.tar.bz2
Create a stub LocationBar object on Mac to communicate between the bar and the Browser.
Review URL: http://codereview.chromium.org/20136 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9334 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/tab_contents_controller.h')
-rw-r--r--chrome/browser/cocoa/tab_contents_controller.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/cocoa/tab_contents_controller.h b/chrome/browser/cocoa/tab_contents_controller.h
index d2cee1f..51878a1 100644
--- a/chrome/browser/cocoa/tab_contents_controller.h
+++ b/chrome/browser/cocoa/tab_contents_controller.h
@@ -8,6 +8,7 @@
#include <Cocoa/Cocoa.h>
class CommandUpdater;
+class LocationBar;
class TabContents;
class TabContentsCommandObserver;
class TabStripModel;
@@ -27,6 +28,7 @@ class TabStripModel;
@private
CommandUpdater* commands_; // weak, may be nil
TabContentsCommandObserver* observer_; // nil if |commands_| is nil
+ LocationBar* locationBarBrige_;
IBOutlet NSButton* backButton_;
IBOutlet NSButton* forwardButton_;
IBOutlet NSButton* reloadStopButton_;
@@ -45,6 +47,9 @@ class TabStripModel;
// Take this view (toolbar and web contents) full screen
- (IBAction)fullScreen:(id)sender;
+// Get the C++ bridge object representing the location bar for this tab.
+- (LocationBar*)locationBar;
+
@end
#endif // CHROME_BROWSER_COCOA_TAB_COTNENTS_CONTROLLER_H_