| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.h" | 5 #include "chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 | 478 |
| 479 SetChevronState(); | 479 SetChevronState(); |
| 480 } | 480 } |
| 481 | 481 |
| 482 void BookmarkBarGtk::Hide(BookmarkBar::State old_state, | 482 void BookmarkBarGtk::Hide(BookmarkBar::State old_state, |
| 483 BookmarkBar::AnimateChangeType animate_type) { | 483 BookmarkBar::AnimateChangeType animate_type) { |
| 484 UpdateDetachedState(old_state); | 484 UpdateDetachedState(old_state); |
| 485 | 485 |
| 486 // After coming out of fullscreen, the browser window sets the bookmark bar | 486 // After coming out of fullscreen, the browser window sets the bookmark bar |
| 487 // to the "hidden" state, which means we need to show our minimum height. | 487 // to the "hidden" state, which means we need to show our minimum height. |
| 488 gtk_widget_show(widget()); | 488 if (!window_->IsFullscreen()) |
| 489 gtk_widget_show(widget()); |
| 489 CalculateMaxHeight(); | 490 CalculateMaxHeight(); |
| 490 // Sometimes we get called without a matching call to open. If that happens | 491 // Sometimes we get called without a matching call to open. If that happens |
| 491 // then force hide. | 492 // then force hide. |
| 492 if (slide_animation_.IsShowing() && | 493 if (slide_animation_.IsShowing() && |
| 493 animate_type == BookmarkBar::ANIMATE_STATE_CHANGE) { | 494 animate_type == BookmarkBar::ANIMATE_STATE_CHANGE) { |
| 494 slide_animation_.Hide(); | 495 slide_animation_.Hide(); |
| 495 } else { | 496 } else { |
| 496 gtk_widget_hide(bookmark_hbox_); | 497 gtk_widget_hide(bookmark_hbox_); |
| 497 slide_animation_.Reset(0); | 498 slide_animation_.Reset(0); |
| 498 AnimationProgressed(&slide_animation_); | 499 AnimationProgressed(&slide_animation_); |
| (...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1471 void BookmarkBarGtk::OnEditBookmarksEnabledChanged() { | 1472 void BookmarkBarGtk::OnEditBookmarksEnabledChanged() { |
| 1472 GtkDestDefaults dest_defaults = | 1473 GtkDestDefaults dest_defaults = |
| 1473 *edit_bookmarks_enabled_ ? GTK_DEST_DEFAULT_ALL : | 1474 *edit_bookmarks_enabled_ ? GTK_DEST_DEFAULT_ALL : |
| 1474 GTK_DEST_DEFAULT_DROP; | 1475 GTK_DEST_DEFAULT_DROP; |
| 1475 gtk_drag_dest_set(overflow_button_, dest_defaults, NULL, 0, kDragAction); | 1476 gtk_drag_dest_set(overflow_button_, dest_defaults, NULL, 0, kDragAction); |
| 1476 gtk_drag_dest_set(other_bookmarks_button_, dest_defaults, | 1477 gtk_drag_dest_set(other_bookmarks_button_, dest_defaults, |
| 1477 NULL, 0, kDragAction); | 1478 NULL, 0, kDragAction); |
| 1478 ui::SetDestTargetList(overflow_button_, kDestTargetList); | 1479 ui::SetDestTargetList(overflow_button_, kDestTargetList); |
| 1479 ui::SetDestTargetList(other_bookmarks_button_, kDestTargetList); | 1480 ui::SetDestTargetList(other_bookmarks_button_, kDestTargetList); |
| 1480 } | 1481 } |
| OLD | NEW |