OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include <stack> | 5 #include <stack> |
6 | 6 |
7 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.h" | 7 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.h" |
8 | 8 |
9 #include "base/auto_reset.h" | 9 #include "base/auto_reset.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/mac/bundle_locations.h" | 11 #include "base/mac/bundle_locations.h" |
12 #include "base/mac/mac_util.h" | 12 #include "base/mac/mac_util.h" |
13 #include "base/strings/sys_string_conversions.h" | 13 #include "base/strings/sys_string_conversions.h" |
14 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 14 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
15 #include "chrome/browser/bookmarks/chrome_bookmark_client.h" | 15 #include "chrome/browser/bookmarks/chrome_bookmark_client.h" |
16 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
17 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_all_tabs_controller.h" | 17 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_all_tabs_controller.h" |
18 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller.h" | 18 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller.h" |
19 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_name_folder_controller.h" | 19 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_name_folder_controller.h" |
20 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.h" | 20 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.h" |
21 #import "chrome/browser/ui/cocoa/browser_window_controller.h" | 21 #import "chrome/browser/ui/cocoa/browser_window_controller.h" |
22 #include "components/bookmarks/browser/bookmark_model.h" | 22 #include "components/bookmarks/browser/bookmark_model.h" |
23 #include "grit/generated_resources.h" | 23 #include "grit/generated_resources.h" |
24 #include "ui/base/l10n/l10n_util.h" | 24 #include "ui/base/l10n/l10n_util.h" |
25 #include "ui/base/l10n/l10n_util_mac.h" | 25 #include "ui/base/l10n/l10n_util_mac.h" |
26 | 26 |
| 27 using bookmarks::BookmarkExpandedStateTracker; |
| 28 |
27 @interface BookmarkEditorBaseController () | 29 @interface BookmarkEditorBaseController () |
28 | 30 |
29 // Return the folder tree object for the given path. | 31 // Return the folder tree object for the given path. |
30 - (BookmarkFolderInfo*)folderForIndexPath:(NSIndexPath*)path; | 32 - (BookmarkFolderInfo*)folderForIndexPath:(NSIndexPath*)path; |
31 | 33 |
32 // (Re)build the folder tree from the BookmarkModel's current state. | 34 // (Re)build the folder tree from the BookmarkModel's current state. |
33 - (void)buildFolderTree; | 35 - (void)buildFolderTree; |
34 | 36 |
35 // Notifies the controller that the bookmark model has changed. | 37 // Notifies the controller that the bookmark model has changed. |
36 // |selection| specifies if the current selection should be | 38 // |selection| specifies if the current selection should be |
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
713 } | 715 } |
714 | 716 |
715 // Implementing isEqual: allows the NSTreeController to preserve the selection | 717 // Implementing isEqual: allows the NSTreeController to preserve the selection |
716 // and open/shut state of outline items when the data changes. | 718 // and open/shut state of outline items when the data changes. |
717 - (BOOL)isEqual:(id)other { | 719 - (BOOL)isEqual:(id)other { |
718 return [other isKindOfClass:[BookmarkFolderInfo class]] && | 720 return [other isKindOfClass:[BookmarkFolderInfo class]] && |
719 folderNode_ == [(BookmarkFolderInfo*)other folderNode]; | 721 folderNode_ == [(BookmarkFolderInfo*)other folderNode]; |
720 } | 722 } |
721 | 723 |
722 @end | 724 @end |
OLD | NEW |