| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #import <Foundation/Foundation.h> | 9 #import <Foundation/Foundation.h> |
| 10 | 10 |
| 11 #include "base/scoped_nsobject.h" | 11 #include "base/scoped_nsobject.h" |
| 12 #import "chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h" | 12 #import "chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h" |
| 13 | 13 |
| 14 @class NSSplitView; | 14 @class NSSplitView; |
| 15 @class NSView; | 15 @class NSView; |
| 16 | 16 |
| 17 class Profile; |
| 17 class TabContents; | 18 class TabContents; |
| 18 | 19 |
| 19 // A class that handles updates of the devTools view within a browser window. | 20 // A class that handles updates of the devTools view within a browser window. |
| 20 // It swaps in the relevant devTools contents for a given TabContents or removes | 21 // It swaps in the relevant devTools contents for a given TabContents or removes |
| 21 // the vew, if there's no devTools contents to show. | 22 // the view, if there's no devTools contents to show. |
| 22 @interface DevToolsController : NSObject { | 23 @interface DevToolsController : NSObject { |
| 23 @private | 24 @private |
| 24 // A view hosting docked devTools contents. | 25 // A view hosting docked devTools contents. |
| 25 scoped_nsobject<NSSplitView> splitView_; | 26 scoped_nsobject<NSSplitView> splitView_; |
| 26 | 27 |
| 27 // Manages currently displayed devTools contents. | 28 // Manages currently displayed devTools contents. |
| 28 scoped_nsobject<TabContentsController> contentsController_; | 29 scoped_nsobject<TabContentsController> contentsController_; |
| 29 } | 30 } |
| 30 | 31 |
| 31 - (id)initWithDelegate:(id<TabContentsControllerDelegate>)delegate; | 32 - (id)initWithDelegate:(id<TabContentsControllerDelegate>)delegate; |
| 32 | 33 |
| 33 // This controller's view. | 34 // This controller's view. |
| 34 - (NSView*)view; | 35 - (NSView*)view; |
| 35 | 36 |
| 36 // The compiler seems to have trouble handling a function named "view" that | 37 // The compiler seems to have trouble handling a function named "view" that |
| 37 // returns an NSSplitView, so provide a differently-named method. | 38 // returns an NSSplitView, so provide a differently-named method. |
| 38 - (NSSplitView*)splitView; | 39 - (NSSplitView*)splitView; |
| 39 | 40 |
| 40 // Depending on |contents|'s state, decides whether the docked web inspector | 41 // Depending on |contents|'s state, decides whether the docked web inspector |
| 41 // should be shown or hidden and adjusts its height (|delegate_| handles | 42 // should be shown or hidden and adjusts its height (|delegate_| handles |
| 42 // the actual resize). | 43 // the actual resize). |
| 43 - (void)updateDevToolsForTabContents:(TabContents*)contents; | 44 - (void)updateDevToolsForTabContents:(TabContents*)contents |
| 45 withProfile:(Profile*)profile; |
| 44 | 46 |
| 45 // Call when the devTools view is properly sized and the render widget host view | 47 // Call when the devTools view is properly sized and the render widget host view |
| 46 // should be put into the view hierarchy. | 48 // should be put into the view hierarchy. |
| 47 - (void)ensureContentsVisible; | 49 - (void)ensureContentsVisible; |
| 48 | 50 |
| 49 @end | 51 @end |
| 50 | 52 |
| 51 #endif // CHROME_BROWSER_UI_COCOA_DEV_TOOLS_CONTROLLER_H_ | 53 #endif // CHROME_BROWSER_UI_COCOA_DEV_TOOLS_CONTROLLER_H_ |
| OLD | NEW |