Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: chrome/browser/ui/cocoa/dev_tools_controller.h

Issue 6247017: Revert 72153 - Remove user-related data from local_state and add to user_pre... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:mergeinfo
OLDNEW
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_controller.h" 12 #import "chrome/browser/ui/cocoa/tab_contents_controller.h"
13 13
14 @class NSSplitView; 14 @class NSSplitView;
15 @class NSView; 15 @class NSView;
16 16
17 class Profile;
18 class TabContents; 17 class TabContents;
19 18
20 // A class that handles updates of the devTools view within a browser window. 19 // A class that handles updates of the devTools view within a browser window.
21 // It swaps in the relevant devTools contents for a given TabContents or removes 20 // It swaps in the relevant devTools contents for a given TabContents or removes
22 // the view, if there's no devTools contents to show. 21 // the vew, if there's no devTools contents to show.
23 @interface DevToolsController : NSObject { 22 @interface DevToolsController : NSObject {
24 @private 23 @private
25 // A view hosting docked devTools contents. 24 // A view hosting docked devTools contents.
26 scoped_nsobject<NSSplitView> splitView_; 25 scoped_nsobject<NSSplitView> splitView_;
27 26
28 // Manages currently displayed devTools contents. 27 // Manages currently displayed devTools contents.
29 scoped_nsobject<TabContentsController> contentsController_; 28 scoped_nsobject<TabContentsController> contentsController_;
30 } 29 }
31 30
32 - (id)initWithDelegate:(id<TabContentsControllerDelegate>)delegate; 31 - (id)initWithDelegate:(id<TabContentsControllerDelegate>)delegate;
33 32
34 // This controller's view. 33 // This controller's view.
35 - (NSView*)view; 34 - (NSView*)view;
36 35
37 // The compiler seems to have trouble handling a function named "view" that 36 // The compiler seems to have trouble handling a function named "view" that
38 // returns an NSSplitView, so provide a differently-named method. 37 // returns an NSSplitView, so provide a differently-named method.
39 - (NSSplitView*)splitView; 38 - (NSSplitView*)splitView;
40 39
41 // Depending on |contents|'s state, decides whether the docked web inspector 40 // Depending on |contents|'s state, decides whether the docked web inspector
42 // should be shown or hidden and adjusts its height (|delegate_| handles 41 // should be shown or hidden and adjusts its height (|delegate_| handles
43 // the actual resize). 42 // the actual resize).
44 - (void)updateDevToolsForTabContents:(TabContents*)contents 43 - (void)updateDevToolsForTabContents:(TabContents*)contents;
45 withProfile:(Profile*)profile;
46 44
47 // Call when the devTools view is properly sized and the render widget host view 45 // Call when the devTools view is properly sized and the render widget host view
48 // should be put into the view hierarchy. 46 // should be put into the view hierarchy.
49 - (void)ensureContentsVisible; 47 - (void)ensureContentsVisible;
50 48
51 @end 49 @end
52 50
53 #endif // CHROME_BROWSER_UI_COCOA_DEV_TOOLS_CONTROLLER_H_ 51 #endif // CHROME_BROWSER_UI_COCOA_DEV_TOOLS_CONTROLLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/browser_window_controller_unittest.mm ('k') | chrome/browser/ui/cocoa/dev_tools_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698