| 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_CHROMEOS_COMPACT_NAVIGATION_BAR_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_COMPACT_NAVIGATION_BAR_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_COMPACT_NAVIGATION_BAR_H_ | 6 #define CHROME_BROWSER_CHROMEOS_COMPACT_NAVIGATION_BAR_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
| 10 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 10 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
| 11 #include "chrome/browser/bubble_positioner.h" | 11 #include "chrome/browser/bubble_positioner.h" |
| 12 #include "chrome/browser/command_updater.h" | 12 #include "chrome/browser/command_updater.h" |
| 13 #include "views/controls/button/button.h" | 13 #include "views/controls/button/button.h" |
| 14 #include "views/view.h" | 14 #include "views/view.h" |
| 15 | 15 |
| 16 class AutocompleteEditViewGtk; | 16 class AutocompleteEditViewGtk; |
| 17 class BackForwardMenuModelViews; | 17 class BackForwardMenuModel; |
| 18 class Browser; | 18 class Browser; |
| 19 | 19 |
| 20 namespace views { | 20 namespace views { |
| 21 class ImageButton; | 21 class ImageButton; |
| 22 class ImageView; | 22 class ImageView; |
| 23 class NativeViewHost; | 23 class NativeViewHost; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace chromeos { | 26 namespace chromeos { |
| 27 | 27 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 bool initialized_; | 80 bool initialized_; |
| 81 | 81 |
| 82 views::ImageButton* back_; | 82 views::ImageButton* back_; |
| 83 views::ImageView* bf_separator_; | 83 views::ImageView* bf_separator_; |
| 84 views::ImageButton* forward_; | 84 views::ImageButton* forward_; |
| 85 | 85 |
| 86 scoped_ptr<AutocompleteEditViewGtk> location_entry_; | 86 scoped_ptr<AutocompleteEditViewGtk> location_entry_; |
| 87 views::NativeViewHost* location_entry_view_; | 87 views::NativeViewHost* location_entry_view_; |
| 88 | 88 |
| 89 // History menu for back and forward buttons. | 89 // History menu for back and forward buttons. |
| 90 scoped_ptr<BackForwardMenuModelViews> back_menu_model_; | 90 scoped_ptr<BackForwardMenuModel> back_menu_model_; |
| 91 scoped_ptr<BackForwardMenuModelViews> forward_menu_model_; | 91 scoped_ptr<BackForwardMenuModel> forward_menu_model_; |
| 92 | 92 |
| 93 DISALLOW_COPY_AND_ASSIGN(CompactNavigationBar); | 93 DISALLOW_COPY_AND_ASSIGN(CompactNavigationBar); |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 } // namespace chromeos | 96 } // namespace chromeos |
| 97 | 97 |
| 98 #endif // CHROME_BROWSER_CHROMEOS_COMPACT_NAVIGATION_BAR_H_ | 98 #endif // CHROME_BROWSER_CHROMEOS_COMPACT_NAVIGATION_BAR_H_ |
| OLD | NEW |