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_LOCATION_BAR_VIEW_GTK_H_ | 5 #ifndef CHROME_BROWSER_GTK_LOCATION_BAR_VIEW_GTK_H_ |
6 #define CHROME_BROWSER_GTK_LOCATION_BAR_VIEW_GTK_H_ | 6 #define CHROME_BROWSER_GTK_LOCATION_BAR_VIEW_GTK_H_ |
7 | 7 |
8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/scoped_ptr.h" |
13 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 14 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
14 #include "chrome/browser/location_bar.h" | 15 #include "chrome/browser/location_bar.h" |
15 #include "chrome/common/page_transition_types.h" | 16 #include "chrome/common/page_transition_types.h" |
16 #include "webkit/glue/window_open_disposition.h" | 17 #include "webkit/glue/window_open_disposition.h" |
17 | 18 |
18 class AutocompleteEditViewGtk; | 19 class AutocompleteEditViewGtk; |
19 class CommandUpdater; | 20 class CommandUpdater; |
20 class Profile; | 21 class Profile; |
21 class SkBitmap; | 22 class SkBitmap; |
22 class TabContents; | 23 class TabContents; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 // The user's desired disposition for how their input should be opened | 80 // The user's desired disposition for how their input should be opened |
80 WindowOpenDisposition disposition_; | 81 WindowOpenDisposition disposition_; |
81 | 82 |
82 // The transition type to use for the navigation | 83 // The transition type to use for the navigation |
83 PageTransition::Type transition_; | 84 PageTransition::Type transition_; |
84 | 85 |
85 DISALLOW_COPY_AND_ASSIGN(LocationBarViewGtk); | 86 DISALLOW_COPY_AND_ASSIGN(LocationBarViewGtk); |
86 }; | 87 }; |
87 | 88 |
88 #endif // CHROME_BROWSER_GTK_LOCATION_BAR_VIEW_GTK_H_ | 89 #endif // CHROME_BROWSER_GTK_LOCATION_BAR_VIEW_GTK_H_ |
OLD | NEW |