| 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 "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 "base/mac/mac_util.h" | 7 #include "base/mac/mac_util.h" |
| 8 #include "base/sys_string_conversions.h" | 8 #include "base/sys_string_conversions.h" |
| 9 #include "chrome/browser/bookmarks/bookmark_model.h" | 9 #include "chrome/browser/bookmarks/bookmark_model.h" |
| 10 #include "chrome/browser/bookmarks/bookmark_utils.h" | 10 #include "chrome/browser/bookmarks/bookmark_utils.h" |
| (...skipping 1644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1655 } | 1655 } |
| 1656 | 1656 |
| 1657 - (CGFloat)verticalScrollArrowHeight { | 1657 - (CGFloat)verticalScrollArrowHeight { |
| 1658 return verticalScrollArrowHeight_; | 1658 return verticalScrollArrowHeight_; |
| 1659 } | 1659 } |
| 1660 | 1660 |
| 1661 - (NSView*)visibleView { | 1661 - (NSView*)visibleView { |
| 1662 return visibleView_; | 1662 return visibleView_; |
| 1663 } | 1663 } |
| 1664 | 1664 |
| 1665 - (NSView*)scrollView { | 1665 - (NSScrollView*)scrollView { |
| 1666 return scrollView_; | 1666 return scrollView_; |
| 1667 } | 1667 } |
| 1668 | 1668 |
| 1669 - (NSView*)folderView { | 1669 - (NSView*)folderView { |
| 1670 return folderView_; | 1670 return folderView_; |
| 1671 } | 1671 } |
| 1672 | 1672 |
| 1673 - (void)setIgnoreAnimations:(BOOL)ignore { | 1673 - (void)setIgnoreAnimations:(BOOL)ignore { |
| 1674 ignoreAnimations_ = ignore; | 1674 ignoreAnimations_ = ignore; |
| 1675 } | 1675 } |
| 1676 | 1676 |
| 1677 - (BookmarkButton*)buttonThatMouseIsIn { | 1677 - (BookmarkButton*)buttonThatMouseIsIn { |
| 1678 return buttonThatMouseIsIn_; | 1678 return buttonThatMouseIsIn_; |
| 1679 } | 1679 } |
| 1680 | 1680 |
| 1681 @end // BookmarkBarFolderController | 1681 @end // BookmarkBarFolderController |
| OLD | NEW |