| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_GTK_BOOKMARK_BAR_GTK_H_ | 5 #ifndef CHROME_BROWSER_GTK_BOOKMARK_BAR_GTK_H_ |
| 6 #define CHROME_BROWSER_GTK_BOOKMARK_BAR_GTK_H_ | 6 #define CHROME_BROWSER_GTK_BOOKMARK_BAR_GTK_H_ |
| 7 | 7 |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 // dragging). | 179 // dragging). |
| 180 bool ignore_button_release_; | 180 bool ignore_button_release_; |
| 181 | 181 |
| 182 // The BookmarkNode from the model being dragged. NULL when we aren't | 182 // The BookmarkNode from the model being dragged. NULL when we aren't |
| 183 // dragging. | 183 // dragging. |
| 184 BookmarkNode* dragged_node_; | 184 BookmarkNode* dragged_node_; |
| 185 | 185 |
| 186 // We create a GtkToolbarItem from |dragged_node_| for display. | 186 // We create a GtkToolbarItem from |dragged_node_| for display. |
| 187 GtkToolItem* toolbar_drop_item_; | 187 GtkToolItem* toolbar_drop_item_; |
| 188 | 188 |
| 189 // Default bookmark icon to display. | |
| 190 GdkPixbuf* default_bookmark_icon_; | |
| 191 | |
| 192 // Icon for bookmark folders. | |
| 193 GdkPixbuf* folder_icon_; | |
| 194 | |
| 195 // Whether we should show the instructional text in the bookmark bar. | 189 // Whether we should show the instructional text in the bookmark bar. |
| 196 bool show_instructions_; | 190 bool show_instructions_; |
| 197 }; | 191 }; |
| 198 | 192 |
| 199 #endif // CHROME_BROWSER_GTK_BOOKMARK_BAR_GTK_H_ | 193 #endif // CHROME_BROWSER_GTK_BOOKMARK_BAR_GTK_H_ |
| OLD | NEW |