| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_VIEWS_COMPACT_NAV_COMPACT_OPTIONS_BAR_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_COMPACT_NAV_COMPACT_OPTIONS_BAR_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_COMPACT_NAV_COMPACT_OPTIONS_BAR_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_COMPACT_NAV_COMPACT_OPTIONS_BAR_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 // Load the images for the back and forward buttons. | 63 // Load the images for the back and forward buttons. |
| 64 void LoadImages(); | 64 void LoadImages(); |
| 65 | 65 |
| 66 BrowserView* browser_view_; | 66 BrowserView* browser_view_; |
| 67 | 67 |
| 68 bool initialized_; | 68 bool initialized_; |
| 69 | 69 |
| 70 // Button and models for the wrench/app menu. | 70 // Button and models for the wrench/app menu. |
| 71 views::MenuButton* app_menu_; | 71 views::MenuButton* app_menu_; |
| 72 scoped_ptr<ui::SimpleMenuModel> wrench_menu_model_; | 72 scoped_ptr<ui::SimpleMenuModel> wrench_menu_model_; |
| 73 scoped_refptr<WrenchMenu> wrench_menu_; | 73 scoped_ptr<WrenchMenu> wrench_menu_; |
| 74 std::vector<views::MenuListener*> menu_listeners_; | 74 std::vector<views::MenuListener*> menu_listeners_; |
| 75 | 75 |
| 76 // TODO(stevet): Add the BrowserActionsContainer. | 76 // TODO(stevet): Add the BrowserActionsContainer. |
| 77 | 77 |
| 78 DISALLOW_COPY_AND_ASSIGN(CompactOptionsBar); | 78 DISALLOW_COPY_AND_ASSIGN(CompactOptionsBar); |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 #endif // CHROME_BROWSER_UI_VIEWS_COMPACT_NAV_COMPACT_OPTIONS_BAR_H_ | 81 #endif // CHROME_BROWSER_UI_VIEWS_COMPACT_NAV_COMPACT_OPTIONS_BAR_H_ |
| OLD | NEW |