| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_COCOA_DEV_TOOLS_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_DEV_TOOLS_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_DEV_TOOLS_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_DEV_TOOLS_CONTROLLER_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
| 11 #include "chrome/browser/devtools/devtools_window.h" | 11 #include "chrome/browser/devtools/devtools_window.h" |
| 12 | 12 |
| 13 @class FocusTracker; | 13 @class FocusTracker; |
| 14 @class GraySplitView; | 14 @class DevToolsContainerView; |
| 15 class Profile; | 15 class Profile; |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 class WebContents; | 18 class WebContents; |
| 19 } | 19 } |
| 20 | 20 |
| 21 // A class that handles updates of the devTools view within a browser window. | 21 // A class that handles updates of the devTools view within a browser window. |
| 22 // It swaps in the relevant devTools contents for a given WebContents or removes | 22 // It swaps in the relevant devTools contents for a given WebContents or removes |
| 23 // the view, if there's no devTools contents to show. | 23 // the view, if there's no devTools contents to show. |
| 24 @interface DevToolsController : NSObject<NSSplitViewDelegate> { | 24 @interface DevToolsController : NSObject { |
| 25 @private | 25 @private |
| 26 // A view hosting docked devTools contents. | 26 // A view hosting docked devTools contents. |
| 27 base::scoped_nsobject<GraySplitView> splitView_; | 27 base::scoped_nsobject<DevToolsContainerView> devToolsContainerView_; |
| 28 | |
| 29 DevToolsDockSide dockSide_; | |
| 30 | 28 |
| 31 // Docked devtools window instance. NULL when current tab is not inspected | 29 // Docked devtools window instance. NULL when current tab is not inspected |
| 32 // or is inspected with undocked version of DevToolsWindow. | 30 // or is inspected with undocked version of DevToolsWindow. |
| 33 DevToolsWindow* devToolsWindow_; | 31 DevToolsWindow* devToolsWindow_; |
| 34 | 32 |
| 35 base::scoped_nsobject<FocusTracker> focusTracker_; | 33 base::scoped_nsobject<FocusTracker> focusTracker_; |
| 36 } | 34 } |
| 37 | 35 |
| 38 - (id)init; | 36 - (id)init; |
| 39 | 37 |
| 40 // This controller's view. | 38 // This controller's view. |
| 41 - (NSView*)view; | 39 - (NSView*)view; |
| 42 | 40 |
| 43 // The compiler seems to have trouble handling a function named "view" that | |
| 44 // returns an NSSplitView, so provide a differently-named method. | |
| 45 - (NSSplitView*)splitView; | |
| 46 | |
| 47 // Depending on |contents|'s state, decides whether the docked web inspector | 41 // Depending on |contents|'s state, decides whether the docked web inspector |
| 48 // should be shown or hidden and adjusts its height (|delegate_| handles | 42 // should be shown or hidden and adjusts inspected page position. |
| 49 // the actual resize). | |
| 50 - (void)updateDevToolsForWebContents:(content::WebContents*)contents | 43 - (void)updateDevToolsForWebContents:(content::WebContents*)contents |
| 51 withProfile:(Profile*)profile; | 44 withProfile:(Profile*)profile; |
| 52 | 45 |
| 53 @end | 46 @end |
| 54 | 47 |
| 55 #endif // CHROME_BROWSER_UI_COCOA_DEV_TOOLS_CONTROLLER_H_ | 48 #endif // CHROME_BROWSER_UI_COCOA_DEV_TOOLS_CONTROLLER_H_ |
| OLD | NEW |