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

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

Issue 102015: Add a very basic preferences window controller with unit test. Fix the prefs ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 7 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
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #import <Cocoa/Cocoa.h>
6
7 class PrefService;
8
9 // A window controller that handles the preferences window.
10 @interface PreferencesWindowController : NSWindowController {
11 @private
12 PrefService* prefs_; // weak ref
13 }
14
15 // Designated initializer. |prefs| should not be NULL.
16 - (id)initWithPrefs:(PrefService*)prefs;
17
18 // Show the preferences window.
19 - (IBAction)showPreferences:(id)sender;
20
21 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698