Index: chrome/browser/views/frame/browser_view.h |
=================================================================== |
--- chrome/browser/views/frame/browser_view.h (revision 19804) |
+++ chrome/browser/views/frame/browser_view.h (working copy) |
@@ -46,6 +46,7 @@ |
namespace views { |
class Menu; |
+class SingleSplitView; |
} |
/////////////////////////////////////////////////////////////////////////////// |
@@ -339,6 +340,9 @@ |
// |contents| can be NULL. |
bool MaybeShowInfoBar(TabContents* contents); |
+ // Updated devtools window for given contents. |
+ void UpdateDevToolsForContents(TabContents* tab_contents); |
+ |
// Updates various optional child Views, e.g. Bookmarks Bar, Info Bar or the |
// Download Shelf in response to a change notification from the specified |
// |contents|. |contents| can be NULL. In this case, all optional UI will be |
@@ -406,6 +410,12 @@ |
// The view that contains the selected TabContents. |
TabContentsContainer* contents_container_; |
+ // The view that contains devtools window for the selected TabContents. |
+ TabContentsContainer* devtools_container_; |
+ |
+ // Split view containing the contents container and devtools container. |
+ views::SingleSplitView* contents_split_; |
+ |
// The Status information bubble that appears at the bottom of the window. |
scoped_ptr<StatusBubbleViews> status_bubble_; |