Index: chrome/browser/ui/views/frame/browser_view.h |
diff --git a/chrome/browser/ui/views/frame/browser_view.h b/chrome/browser/ui/views/frame/browser_view.h |
index c5905c846f67457d5a37ffa38774fdc41db68854..9f02630a14bc82b94921bad1bfdec22e96074ea4 100644 |
--- a/chrome/browser/ui/views/frame/browser_view.h |
+++ b/chrome/browser/ui/views/frame/browser_view.h |
@@ -499,17 +499,17 @@ class BrowserView : public BrowserWindow, |
// |contents| can be NULL. |
bool MaybeShowInfoBar(TabContents* contents); |
+ // Updated devtools window for given contents. |
Peter Kasting
2012/10/24 21:18:09
Nit: Updated -> Update? What does "Update dev too
pfeldman
2012/10/25 15:17:40
Done. Added comment.
|
+ void UpdateDevToolsForContents(TabContents* tab_contents); |
+ |
// Shows docked devtools. |
- void ShowDevToolsContainer(DevToolsDockSide side); |
+ void ShowDevToolsContainer(); |
// Hides docked devtools. |
void HideDevToolsContainer(); |
- // Updates devtools dock side. |
- void SetDevToolsDockSide(DevToolsDockSide side); |
- |
- // Updated devtools window for given contents. |
- void UpdateDevToolsForContents(TabContents* tab_contents); |
+ // Updates docked devtools size. |
Peter Kasting
2012/10/24 21:18:09
Nit: Again, "updates" is too vague. What does thi
pfeldman
2012/10/25 15:17:40
Done.
|
+ void UpdateDevToolsSplitPosition(); |
// Updates various optional child Views, e.g. Bookmarks Bar, Info Bar or the |
// Download Shelf in response to a change notification from the specified |
@@ -659,9 +659,12 @@ class BrowserView : public BrowserWindow, |
// Split view containing the contents container and devtools container. |
views::SingleSplitView* contents_split_; |
- // Side to dock devtools to |
+ // Side to dock devtools to. |
DevToolsDockSide devtools_dock_side_; |
+ // Docked devtools window instance. |
Peter Kasting
2012/10/24 21:18:09
Can this be NULL?
pfeldman
2012/10/25 15:17:40
Done.
|
+ DevToolsWindow* devtools_window_; |
+ |
// Tracks and stores the last focused view which is not the |
// devtools_container_ or any of its children. Used to restore focus once |
// the devtools_container_ is hidden. |