OLD | NEW |
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 <AppKit/AppKit.h> | 5 #import <AppKit/AppKit.h> |
6 | 6 |
7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "app/resource_bundle.h" | 8 #include "app/resource_bundle.h" |
9 #include "base/nsimage_cache_mac.h" | 9 #include "base/nsimage_cache_mac.h" |
10 #include "base/sys_string_conversions.h" | 10 #include "base/sys_string_conversions.h" |
11 #import "chrome/browser/app_controller_mac.h" | 11 #import "chrome/browser/app_controller_mac.h" |
12 #include "chrome/browser/bookmarks/bookmark_model.h" | 12 #include "chrome/browser/bookmarks/bookmark_model.h" |
13 #include "chrome/browser/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
14 #include "chrome/browser/profile_manager.h" | 14 #include "chrome/browser/profiles/profile_manager.h" |
15 #include "chrome/browser/ui/browser.h" | 15 #include "chrome/browser/ui/browser.h" |
16 #include "chrome/browser/ui/browser_list.h" | 16 #include "chrome/browser/ui/browser_list.h" |
17 #include "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h" | 17 #include "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h" |
18 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller.h" | 18 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_cocoa_controller.h" |
19 #include "grit/generated_resources.h" | 19 #include "grit/generated_resources.h" |
20 #include "grit/theme_resources.h" | 20 #include "grit/theme_resources.h" |
21 #include "skia/ext/skia_utils_mac.h" | 21 #include "skia/ext/skia_utils_mac.h" |
22 | 22 |
23 BookmarkMenuBridge::BookmarkMenuBridge(Profile* profile) | 23 BookmarkMenuBridge::BookmarkMenuBridge(Profile* profile) |
24 : menuIsValid_(false), | 24 : menuIsValid_(false), |
(...skipping 219 matching lines...) Loading... |
244 | 244 |
245 NSMenuItem* BookmarkMenuBridge::MenuItemForNode(const BookmarkNode* node) { | 245 NSMenuItem* BookmarkMenuBridge::MenuItemForNode(const BookmarkNode* node) { |
246 if (!node) | 246 if (!node) |
247 return nil; | 247 return nil; |
248 std::map<const BookmarkNode*, NSMenuItem*>::iterator it = | 248 std::map<const BookmarkNode*, NSMenuItem*>::iterator it = |
249 bookmark_nodes_.find(node); | 249 bookmark_nodes_.find(node); |
250 if (it == bookmark_nodes_.end()) | 250 if (it == bookmark_nodes_.end()) |
251 return nil; | 251 return nil; |
252 return it->second; | 252 return it->second; |
253 } | 253 } |
OLD | NEW |