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_LOCATION_BAR_VIEW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ |
6 #define CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
10 | 10 |
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
532 | 532 |
533 // Indicate if |tab_to_search_hint_| should be shown. | 533 // Indicate if |tab_to_search_hint_| should be shown. |
534 bool show_keyword_hint_; | 534 bool show_keyword_hint_; |
535 | 535 |
536 // The last search keyword that was shown via the |tab_to_search_box_|. | 536 // The last search keyword that was shown via the |tab_to_search_box_|. |
537 string16 last_keyword_; | 537 string16 last_keyword_; |
538 | 538 |
539 // Used to change the visibility of the star decoration. | 539 // Used to change the visibility of the star decoration. |
540 BooleanPrefMember edit_bookmarks_enabled_; | 540 BooleanPrefMember edit_bookmarks_enabled_; |
541 | 541 |
| 542 // Used to remember the URL and title text when drag&drop has begun. |
| 543 GURL drag_url_; |
| 544 string16 drag_title_; |
| 545 |
542 DISALLOW_COPY_AND_ASSIGN(LocationBarViewGtk); | 546 DISALLOW_COPY_AND_ASSIGN(LocationBarViewGtk); |
543 }; | 547 }; |
544 | 548 |
545 #endif // CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ | 549 #endif // CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ |
OLD | NEW |