summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/cocoa/dev_tools_controller.h
diff options
context:
space:
mode:
authormirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-21 19:37:09 +0000
committermirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-21 19:37:09 +0000
commitca17d03744b3f8b3ce31e82164e10b3c4a96ad8e (patch)
tree4c7adadd629e9978e5cbab7afeff2a19e6fceaba /chrome/browser/ui/cocoa/dev_tools_controller.h
parent669c46eed0f7df6774ff807b22d6946491525cdf (diff)
downloadchromium_src-ca17d03744b3f8b3ce31e82164e10b3c4a96ad8e.zip
chromium_src-ca17d03744b3f8b3ce31e82164e10b3c4a96ad8e.tar.gz
chromium_src-ca17d03744b3f8b3ce31e82164e10b3c4a96ad8e.tar.bz2
Revert 72153 - Remove user-related data from local_state and add to user_preferences, in preparation for multi-profile.
devtools kDevToolsSplitLocation browser kBrowserWindowPlacement Also add a method to browser_prefs to delete obsolete preferences from local state, and fix all related tests. BUG=66717 TEST=all browser, interactive, and ui tests work properly Review URL: http://codereview.chromium.org/5915006 TBR=mirandac@chromium.org Review URL: http://codereview.chromium.org/6247017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72175 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/cocoa/dev_tools_controller.h')
-rw-r--r--chrome/browser/ui/cocoa/dev_tools_controller.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/browser/ui/cocoa/dev_tools_controller.h b/chrome/browser/ui/cocoa/dev_tools_controller.h
index 4555b9a..c89a9f8 100644
--- a/chrome/browser/ui/cocoa/dev_tools_controller.h
+++ b/chrome/browser/ui/cocoa/dev_tools_controller.h
@@ -14,12 +14,11 @@
@class NSSplitView;
@class NSView;
-class Profile;
class TabContents;
// A class that handles updates of the devTools view within a browser window.
// It swaps in the relevant devTools contents for a given TabContents or removes
-// the view, if there's no devTools contents to show.
+// the vew, if there's no devTools contents to show.
@interface DevToolsController : NSObject {
@private
// A view hosting docked devTools contents.
@@ -41,8 +40,7 @@ class TabContents;
// Depending on |contents|'s state, decides whether the docked web inspector
// should be shown or hidden and adjusts its height (|delegate_| handles
// the actual resize).
-- (void)updateDevToolsForTabContents:(TabContents*)contents
- withProfile:(Profile*)profile;
+- (void)updateDevToolsForTabContents:(TabContents*)contents;
// Call when the devTools view is properly sized and the render widget host view
// should be put into the view hierarchy.