| 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 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.h" | 5 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include "base/mac/bundle_locations.h" | 9 #include "base/mac/bundle_locations.h" |
| 8 #include "base/strings/sys_string_conversions.h" | 10 #include "base/strings/sys_string_conversions.h" |
| 9 #import "chrome/browser/bookmarks/bookmark_model_factory.h" | 11 #import "chrome/browser/bookmarks/bookmark_model_factory.h" |
| 10 #import "chrome/browser/bookmarks/managed_bookmark_service_factory.h" | 12 #import "chrome/browser/bookmarks/managed_bookmark_service_factory.h" |
| 11 #import "chrome/browser/profiles/profile.h" | 13 #import "chrome/browser/profiles/profile.h" |
| 12 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_constants.h" | 14 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_constants.h" |
| 13 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" | 15 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" |
| 14 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_button_cell.h" | 16 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_button_cell.h" |
| 15 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_hover_state.h" | 17 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_hover_state.h" |
| 16 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.h" | 18 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.h" |
| (...skipping 2026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2043 | 2045 |
| 2044 - (void)setIgnoreAnimations:(BOOL)ignore { | 2046 - (void)setIgnoreAnimations:(BOOL)ignore { |
| 2045 ignoreAnimations_ = ignore; | 2047 ignoreAnimations_ = ignore; |
| 2046 } | 2048 } |
| 2047 | 2049 |
| 2048 - (BookmarkButton*)buttonThatMouseIsIn { | 2050 - (BookmarkButton*)buttonThatMouseIsIn { |
| 2049 return buttonThatMouseIsIn_; | 2051 return buttonThatMouseIsIn_; |
| 2050 } | 2052 } |
| 2051 | 2053 |
| 2052 @end // BookmarkBarFolderController | 2054 @end // BookmarkBarFolderController |
| OLD | NEW |