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 | 7 |
8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 16 matching lines...) Expand all Loading... |
27 #include "chrome/browser/ui/view_ids.h" | 27 #include "chrome/browser/ui/view_ids.h" |
28 #include "chrome/common/content_settings_types.h" | 28 #include "chrome/common/content_settings_types.h" |
29 #include "content/public/browser/notification_observer.h" | 29 #include "content/public/browser/notification_observer.h" |
30 #include "content/public/browser/notification_registrar.h" | 30 #include "content/public/browser/notification_registrar.h" |
31 #include "content/public/common/page_transition_types.h" | 31 #include "content/public/common/page_transition_types.h" |
32 #include "googleurl/src/gurl.h" | 32 #include "googleurl/src/gurl.h" |
33 #include "ui/base/animation/animation_delegate.h" | 33 #include "ui/base/animation/animation_delegate.h" |
34 #include "ui/base/animation/slide_animation.h" | 34 #include "ui/base/animation/slide_animation.h" |
35 #include "ui/base/gtk/gtk_signal.h" | 35 #include "ui/base/gtk/gtk_signal.h" |
36 #include "ui/base/gtk/owned_widget_gtk.h" | 36 #include "ui/base/gtk/owned_widget_gtk.h" |
37 #include "webkit/glue/window_open_disposition.h" | 37 #include "ui/base/window_open_disposition.h" |
38 | 38 |
39 class ActionBoxButtonGtk; | 39 class ActionBoxButtonGtk; |
40 class Browser; | 40 class Browser; |
41 class CommandUpdater; | 41 class CommandUpdater; |
42 class ContentSettingImageModel; | 42 class ContentSettingImageModel; |
43 class ContentSettingBubbleGtk; | 43 class ContentSettingBubbleGtk; |
44 class ExtensionAction; | 44 class ExtensionAction; |
45 class GtkThemeService; | 45 class GtkThemeService; |
46 class OmniboxViewGtk; | 46 class OmniboxViewGtk; |
47 class ToolbarModel; | 47 class ToolbarModel; |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
541 BooleanPrefMember edit_bookmarks_enabled_; | 541 BooleanPrefMember edit_bookmarks_enabled_; |
542 | 542 |
543 // Used to remember the URL and title text when drag&drop has begun. | 543 // Used to remember the URL and title text when drag&drop has begun. |
544 GURL drag_url_; | 544 GURL drag_url_; |
545 string16 drag_title_; | 545 string16 drag_title_; |
546 | 546 |
547 DISALLOW_COPY_AND_ASSIGN(LocationBarViewGtk); | 547 DISALLOW_COPY_AND_ASSIGN(LocationBarViewGtk); |
548 }; | 548 }; |
549 | 549 |
550 #endif // CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ | 550 #endif // CHROME_BROWSER_UI_GTK_LOCATION_BAR_VIEW_GTK_H_ |
OLD | NEW |