| 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 #ifndef CHROME_BROWSER_UI_GTK_BOOKMARKS_BOOKMARK_BAR_GTK_H_ |    5 #ifndef CHROME_BROWSER_UI_GTK_BOOKMARKS_BOOKMARK_BAR_GTK_H_ | 
|    6 #define CHROME_BROWSER_UI_GTK_BOOKMARKS_BOOKMARK_BAR_GTK_H_ |    6 #define CHROME_BROWSER_UI_GTK_BOOKMARKS_BOOKMARK_BAR_GTK_H_ | 
|    7  |    7  | 
|    8 #include <gtk/gtk.h> |    8 #include <gtk/gtk.h> | 
|    9  |    9  | 
|   10 #include <vector> |   10 #include <vector> | 
|   11  |   11  | 
|   12 #include "base/compiler_specific.h" |   12 #include "base/compiler_specific.h" | 
|   13 #include "base/gtest_prod_util.h" |   13 #include "base/gtest_prod_util.h" | 
|   14 #include "base/memory/scoped_ptr.h" |   14 #include "base/memory/scoped_ptr.h" | 
|   15 #include "base/memory/weak_ptr.h" |   15 #include "base/memory/weak_ptr.h" | 
 |   16 #include "chrome/browser/api/prefs/pref_member.h" | 
|   16 #include "chrome/browser/bookmarks/bookmark_context_menu_controller.h" |   17 #include "chrome/browser/bookmarks/bookmark_context_menu_controller.h" | 
|   17 #include "chrome/browser/bookmarks/bookmark_model_observer.h" |   18 #include "chrome/browser/bookmarks/bookmark_model_observer.h" | 
|   18 #include "chrome/browser/prefs/pref_member.h" |  | 
|   19 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" |   19 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" | 
|   20 #include "chrome/browser/ui/bookmarks/bookmark_bar_instructions_delegate.h" |   20 #include "chrome/browser/ui/bookmarks/bookmark_bar_instructions_delegate.h" | 
|   21 #include "chrome/browser/ui/gtk/menu_bar_helper.h" |   21 #include "chrome/browser/ui/gtk/menu_bar_helper.h" | 
|   22 #include "chrome/browser/ui/gtk/view_id_util.h" |   22 #include "chrome/browser/ui/gtk/view_id_util.h" | 
|   23 #include "content/public/browser/notification_observer.h" |   23 #include "content/public/browser/notification_observer.h" | 
|   24 #include "content/public/browser/notification_registrar.h" |   24 #include "content/public/browser/notification_registrar.h" | 
|   25 #include "ui/base/animation/animation.h" |   25 #include "ui/base/animation/animation.h" | 
|   26 #include "ui/base/animation/animation_delegate.h" |   26 #include "ui/base/animation/animation_delegate.h" | 
|   27 #include "ui/base/animation/slide_animation.h" |   27 #include "ui/base/animation/slide_animation.h" | 
|   28 #include "ui/base/gtk/gtk_signal.h" |   28 #include "ui/base/gtk/gtk_signal.h" | 
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  406  |  406  | 
|  407   BookmarkBar::State bookmark_bar_state_; |  407   BookmarkBar::State bookmark_bar_state_; | 
|  408  |  408  | 
|  409   // Maximum height of the bookmark bar. |  409   // Maximum height of the bookmark bar. | 
|  410   int max_height_; |  410   int max_height_; | 
|  411  |  411  | 
|  412   DISALLOW_COPY_AND_ASSIGN(BookmarkBarGtk); |  412   DISALLOW_COPY_AND_ASSIGN(BookmarkBarGtk); | 
|  413 }; |  413 }; | 
|  414  |  414  | 
|  415 #endif  // CHROME_BROWSER_UI_GTK_BOOKMARKS_BOOKMARK_BAR_GTK_H_ |  415 #endif  // CHROME_BROWSER_UI_GTK_BOOKMARKS_BOOKMARK_BAR_GTK_H_ | 
| OLD | NEW |