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_STATUS_NETWORK_MENU_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_STATUS_NETWORK_MENU_H_ |
6 #define CHROME_BROWSER_CHROMEOS_STATUS_NETWORK_MENU_H_ | 6 #define CHROME_BROWSER_CHROMEOS_STATUS_NETWORK_MENU_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "chrome/browser/chromeos/options/network_config_view.h" | 12 #include "chrome/browser/chromeos/options/network_config_view.h" |
13 #include "gfx/native_widget_types.h" | |
14 #include "third_party/skia/include/core/SkBitmap.h" | 13 #include "third_party/skia/include/core/SkBitmap.h" |
15 #include "ui/base/models/simple_menu_model.h" | 14 #include "ui/base/models/simple_menu_model.h" |
| 15 #include "ui/gfx/native_widget_types.h" |
16 #include "views/controls/menu/view_menu_delegate.h" | 16 #include "views/controls/menu/view_menu_delegate.h" |
17 | 17 |
18 namespace gfx { | 18 namespace gfx { |
19 class Canvas; | 19 class Canvas; |
20 } | 20 } |
21 | 21 |
22 namespace views { | 22 namespace views { |
23 class Menu2; | 23 class Menu2; |
24 } | 24 } |
25 | 25 |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 | 222 |
223 // If true, call into the settings UI for network configuration dialogs. | 223 // If true, call into the settings UI for network configuration dialogs. |
224 bool use_settings_ui_; | 224 bool use_settings_ui_; |
225 | 225 |
226 DISALLOW_COPY_AND_ASSIGN(NetworkMenu); | 226 DISALLOW_COPY_AND_ASSIGN(NetworkMenu); |
227 }; | 227 }; |
228 | 228 |
229 } // namespace chromeos | 229 } // namespace chromeos |
230 | 230 |
231 #endif // CHROME_BROWSER_CHROMEOS_STATUS_NETWORK_MENU_H_ | 231 #endif // CHROME_BROWSER_CHROMEOS_STATUS_NETWORK_MENU_H_ |
OLD | NEW |