| 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_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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
| 13 #include "chrome/browser/chromeos/status/status_area_button.h" | 13 #include "chrome/browser/chromeos/status/status_area_button.h" |
| 14 #include "chrome/browser/ui/browser_list.h" | 14 #include "chrome/browser/ui/browser_list.h" |
| 15 #include "chrome/browser/ui/views/frame/browser_view.h" | 15 #include "chrome/browser/ui/views/frame/browser_view.h" |
| 16 #include "ui/views/context_menu_controller.h" |
| 16 #include "ui/views/controls/menu/menu_listener.h" | 17 #include "ui/views/controls/menu/menu_listener.h" |
| 17 #include "views/context_menu_controller.h" | |
| 18 | 18 |
| 19 class StatusAreaButton; | 19 class StatusAreaButton; |
| 20 | 20 |
| 21 namespace views { | 21 namespace views { |
| 22 class AccessiblePaneView; | 22 class AccessiblePaneView; |
| 23 class MenuDelegate; | 23 class MenuDelegate; |
| 24 class MenuRunner; | 24 class MenuRunner; |
| 25 } // namespace views | 25 } // namespace views |
| 26 | 26 |
| 27 namespace chromeos { | 27 namespace chromeos { |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 // Should the layout mode button be shown? We only show it if there are | 157 // Should the layout mode button be shown? We only show it if there are |
| 158 // multiple browsers open. | 158 // multiple browsers open. |
| 159 bool should_show_layout_mode_button_; | 159 bool should_show_layout_mode_button_; |
| 160 | 160 |
| 161 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 161 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 162 }; | 162 }; |
| 163 | 163 |
| 164 } // namespace chromeos | 164 } // namespace chromeos |
| 165 | 165 |
| 166 #endif // CHROME_BROWSER_CHROMEOS_FRAME_BROWSER_VIEW_H_ | 166 #endif // CHROME_BROWSER_CHROMEOS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |