diff options
author | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-29 16:58:19 +0000 |
---|---|---|
committer | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-29 16:58:19 +0000 |
commit | 853e16ebf1c5b363513ee2b9c1c396a6317ec6c3 (patch) | |
tree | 2643483dc332d8b84e6fbf2bce25f5836536e5ee /chrome/browser/ui/cocoa/dev_tools_controller.h | |
parent | 3c15fcbc3d13656a4e1013fe5bcac0568b4e8113 (diff) | |
download | chromium_src-853e16ebf1c5b363513ee2b9c1c396a6317ec6c3.zip chromium_src-853e16ebf1c5b363513ee2b9c1c396a6317ec6c3.tar.gz chromium_src-853e16ebf1c5b363513ee2b9c1c396a6317ec6c3.tar.bz2 |
TBR=jam
John: I've added a method and a message in the devtools subsystem.
Review URL: http://codereview.chromium.org/9008043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115967 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/cocoa/dev_tools_controller.h')
-rw-r--r-- | chrome/browser/ui/cocoa/dev_tools_controller.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/ui/cocoa/dev_tools_controller.h b/chrome/browser/ui/cocoa/dev_tools_controller.h index 0875e15..1d68533 100644 --- a/chrome/browser/ui/cocoa/dev_tools_controller.h +++ b/chrome/browser/ui/cocoa/dev_tools_controller.h @@ -26,6 +26,8 @@ class TabContents; // A view hosting docked devTools contents. scoped_nsobject<NSSplitView> splitView_; + BOOL dockToRight_; + // Manages currently displayed devTools contents. scoped_nsobject<TabContentsController> contentsController_; } @@ -45,6 +47,10 @@ class TabContents; - (void)updateDevToolsForTabContents:(TabContents*)contents withProfile:(Profile*)profile; +// Specifies whether devtools should dock to right. +- (void)setDockToRight:(BOOL)dock_to_right + withProfile:(Profile*)profile; + // Call when the devTools view is properly sized and the render widget host view // should be put into the view hierarchy. - (void)ensureContentsVisible; |