OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FRAME_BROWSER_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FRAME_BROWSER_VIEW_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "chrome/browser/chromeos/status/status_area_host.h" | 10 #include "chrome/browser/chromeos/status/status_area_host.h" |
11 #include "chrome/browser/views/frame/browser_view.h" | 11 #include "chrome/browser/views/frame/browser_view.h" |
12 | 12 |
13 class AccessibleToolbarView; | 13 class AccessibleToolbarView; |
14 class TabStripModel; | 14 class TabStripModel; |
15 | 15 |
16 namespace menus { | 16 namespace menus { |
17 class SimpleMenuModel; | 17 class SimpleMenuModel; |
18 } // namespace menus | 18 } // namespace menus |
19 | 19 |
20 namespace views { | 20 namespace views { |
21 class ImageButton; | 21 class ImageButton; |
| 22 class ImageView; |
22 class Menu2; | 23 class Menu2; |
23 } // namespace views | 24 } // namespace views |
24 | 25 |
25 class Profile; | 26 class Profile; |
26 | 27 |
27 namespace chromeos { | 28 namespace chromeos { |
28 | 29 |
29 class StatusAreaView; | 30 class StatusAreaView; |
30 class StatusAreaButton; | 31 class StatusAreaButton; |
31 | 32 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 | 91 |
91 // Off the record icon. | 92 // Off the record icon. |
92 views::ImageView* otr_avatar_icon_; | 93 views::ImageView* otr_avatar_icon_; |
93 | 94 |
94 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 95 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
95 }; | 96 }; |
96 | 97 |
97 } // namespace chromeos | 98 } // namespace chromeos |
98 | 99 |
99 #endif // CHROME_BROWSER_CHROMEOS_FRAME_BROWSER_VIEW_H_ | 100 #endif // CHROME_BROWSER_CHROMEOS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |