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 <Foundation/Foundation.h> | 8 #import <Cocoa/Cocoa.h> |
Nico
2012/07/26 05:28:00
For NSSplitViewDelegate
| |
9 | 9 |
10 #import "base/mac/cocoa_protocols.h" | |
11 #include "base/memory/scoped_nsobject.h" | 10 #include "base/memory/scoped_nsobject.h" |
12 | 11 |
13 @class NSSplitView; | 12 @class NSSplitView; |
14 @class NSView; | 13 @class NSView; |
15 | 14 |
16 class Profile; | 15 class Profile; |
17 | 16 |
18 namespace content { | 17 namespace content { |
19 class WebContents; | 18 class WebContents; |
20 } | 19 } |
(...skipping 23 matching lines...) Expand all Loading... | |
44 // the actual resize). | 43 // the actual resize). |
45 - (void)updateDevToolsForWebContents:(content::WebContents*)contents | 44 - (void)updateDevToolsForWebContents:(content::WebContents*)contents |
46 withProfile:(Profile*)profile; | 45 withProfile:(Profile*)profile; |
47 | 46 |
48 // Specifies whether devtools should dock to right. | 47 // Specifies whether devtools should dock to right. |
49 - (void)setDockToRight:(BOOL)dock_to_right | 48 - (void)setDockToRight:(BOOL)dock_to_right |
50 withProfile:(Profile*)profile; | 49 withProfile:(Profile*)profile; |
51 @end | 50 @end |
52 | 51 |
53 #endif // CHROME_BROWSER_UI_COCOA_DEV_TOOLS_CONTROLLER_H_ | 52 #endif // CHROME_BROWSER_UI_COCOA_DEV_TOOLS_CONTROLLER_H_ |
OLD | NEW |