Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1073)

Side by Side Diff: chrome/browser/ui/gtk/location_bar_view_gtk.h

Issue 10693088: Get URL and title at the beginning of favicon drag-and-drop, not at the end. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/gtk/location_bar_view_gtk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/gtk/location_bar_view_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698