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

Side by Side Diff: chrome/browser/cocoa/preferences_window_controller.h

Issue 3203008: Move prefs-related files under chrome/browser/ into a prefs/ subdir. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 4 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
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 #import <Cocoa/Cocoa.h> 5 #import <Cocoa/Cocoa.h>
6 6
7 #include "base/scoped_ptr.h" 7 #include "base/scoped_ptr.h"
8 #include "base/scoped_nsobject.h" 8 #include "base/scoped_nsobject.h"
9 #include "chrome/browser/options_window.h" 9 #include "chrome/browser/options_window.h"
10 #include "chrome/browser/pref_member.h" 10 #include "chrome/browser/prefs/pref_member.h"
11 #include "chrome/browser/pref_set_observer.h" 11 #include "chrome/browser/prefs/pref_set_observer.h"
12 12
13 namespace PreferencesWindowControllerInternal { 13 namespace PreferencesWindowControllerInternal {
14 class PrefObserverBridge; 14 class PrefObserverBridge;
15 class ManagedPrefsBannerState; 15 class ManagedPrefsBannerState;
16 } 16 }
17 17
18 @class CustomHomePagesModel; 18 @class CustomHomePagesModel;
19 @class FontLanguageSettingsController; 19 @class FontLanguageSettingsController;
20 class PrefService; 20 class PrefService;
21 class Profile; 21 class Profile;
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 200
201 // Returns the (normalized) page corresponding to the given toolbar item. 201 // Returns the (normalized) page corresponding to the given toolbar item.
202 // Should be called only after awakeFromNib is. 202 // Should be called only after awakeFromNib is.
203 - (OptionsPage)getPageForToolbarItem:(NSToolbarItem*)toolbarItem; 203 - (OptionsPage)getPageForToolbarItem:(NSToolbarItem*)toolbarItem;
204 204
205 // Returns the view corresponding to the given page. Should be called 205 // Returns the view corresponding to the given page. Should be called
206 // only after awakeFromNib is. 206 // only after awakeFromNib is.
207 - (NSView*)getPrefsViewForPage:(OptionsPage)page; 207 - (NSView*)getPrefsViewForPage:(OptionsPage)page;
208 208
209 @end 209 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698