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

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

Issue 345026: BookmarkEditorController needs to implement NSMatrixDelegate for the 10.6 SDK build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 1 month 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
« no previous file with comments | « base/cocoa_protocols_mac.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 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 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_COCOA_BOOKMARK_EDITOR_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_COCOA_BOOKMARK_EDITOR_CONTROLLER_H_
6 #define CHROME_BROWSER_COCOA_BOOKMARK_EDITOR_CONTROLLER_H_ 6 #define CHROME_BROWSER_COCOA_BOOKMARK_EDITOR_CONTROLLER_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #import "base/cocoa_protocols_mac.h" 10 #import "base/cocoa_protocols_mac.h"
11 #include "base/scoped_ptr.h" 11 #include "base/scoped_ptr.h"
12 #include "base/scoped_nsobject.h" 12 #include "base/scoped_nsobject.h"
13 #include "chrome/browser/bookmarks/bookmark_editor.h" 13 #include "chrome/browser/bookmarks/bookmark_editor.h"
14 14
15 @class BookmarkTreeBrowserCell; 15 @class BookmarkTreeBrowserCell;
16 16
17 // A controller for the bookmark editor, opened with Edit... from the 17 // A controller for the bookmark editor, opened with Edit... from the
18 // context menu of a bookmark button. 18 // context menu of a bookmark button.
19 @interface BookmarkEditorController : NSWindowController<NSTextFieldDelegate> { 19 @interface BookmarkEditorController : NSWindowController<NSMatrixDelegate,
20 NSTextFieldDelegate> {
20 @private 21 @private
21 IBOutlet NSTextField* nameField_; 22 IBOutlet NSTextField* nameField_;
22 IBOutlet NSTextField* urlField_; 23 IBOutlet NSTextField* urlField_;
23 IBOutlet NSBrowser* folderBrowser_; 24 IBOutlet NSBrowser* folderBrowser_;
24 IBOutlet NSButton* okButton_; 25 IBOutlet NSButton* okButton_;
25 IBOutlet NSButton* newFolderButton_; 26 IBOutlet NSButton* newFolderButton_;
26 27
27 NSWindow* parentWindow_; 28 NSWindow* parentWindow_;
28 Profile* profile_; // weak 29 Profile* profile_; // weak
29 const BookmarkNode* parentNode_; // weak; owned by the model 30 const BookmarkNode* parentNode_; // weak; owned by the model
(...skipping 26 matching lines...) Expand all
56 @end 57 @end
57 58
58 @interface BookmarkEditorController(TestingAPI) 59 @interface BookmarkEditorController(TestingAPI)
59 @property (assign) NSString* displayName; 60 @property (assign) NSString* displayName;
60 @property (assign) NSString* displayURL; 61 @property (assign) NSString* displayURL;
61 @property (readonly) BOOL okButtonEnabled; 62 @property (readonly) BOOL okButtonEnabled;
62 - (void)selectTestNodeInBrowser:(const BookmarkNode*)node; 63 - (void)selectTestNodeInBrowser:(const BookmarkNode*)node;
63 @end 64 @end
64 65
65 #endif /* CHROME_BROWSER_COCOA_BOOKMARK_EDITOR_CONTROLLER_H_ */ 66 #endif /* CHROME_BROWSER_COCOA_BOOKMARK_EDITOR_CONTROLLER_H_ */
OLDNEW
« no previous file with comments | « base/cocoa_protocols_mac.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698