| Index: chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm
|
| index e5e3387b9dea568d9fab7dda56846b8830786374..8d89ca10119dcbf5c5b87dcc2b39a8806e56e332 100644
|
| --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm
|
| @@ -257,10 +257,7 @@ void RecordAppLaunch(Profile* profile, GURL url) {
|
| rb.GetNativeImageNamed(IDR_DEFAULT_FAVICON).CopyNSImage());
|
|
|
| innerContentAnimationsEnabled_ = YES;
|
| - // Disable state animations (for example, showing or hiding the bookmark
|
| - // bar) if the detached bookmark bar will be shown at the bottom of the new
|
| - // tab page.
|
| - stateAnimationsEnabled_ = ![self shouldShowAtBottomWhenDetached];
|
| + stateAnimationsEnabled_ = YES;
|
|
|
| // Register for theme changes, bookmark button pulsing, ...
|
| NSNotificationCenter* defaultCenter = [NSNotificationCenter defaultCenter];
|
| @@ -2359,7 +2356,7 @@ static BOOL ValueInRangeInclusive(CGFloat low, CGFloat value, CGFloat high) {
|
| }
|
|
|
| - (BOOL)shouldShowAtBottomWhenDetached {
|
| - return chrome::search::IsInstantExtendedAPIEnabled(browser_->profile());
|
| + return NO;
|
| }
|
|
|
| #pragma mark BookmarkButtonDelegate Protocol
|
|
|