OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 ASH_SYSTEM_NETWORK_NETWORK_INFO_H_ | 5 #ifndef ASH_SYSTEM_NETWORK_NETWORK_INFO_H_ |
6 #define ASH_SYSTEM_NETWORK_NETWORK_INFO_H_ | 6 #define ASH_SYSTEM_NETWORK_NETWORK_INFO_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 #include "ui/gfx/image/image_skia.h" | 11 #include "ui/gfx/image/image_skia.h" |
12 | 12 |
13 namespace gfx { | 13 namespace gfx { |
14 class ImageSkia; | 14 class ImageSkia; |
15 } | 15 } |
16 | 16 |
17 namespace ash { | 17 namespace ash { |
18 | 18 |
19 // Includes information necessary about a network for displaying the appropriate | 19 // Includes information necessary about a network for displaying the appropriate |
20 // UI to the user. | 20 // UI to the user. |
21 struct NetworkInfo { | 21 struct NetworkInfo { |
22 enum class Type { UNKNOWN, WIFI, TETHER, CELLULAR }; | 22 enum class Type { UNKNOWN, WIFI, MOBILE }; |
23 | 23 |
24 NetworkInfo(); | 24 NetworkInfo(); |
25 NetworkInfo(const std::string& guid); | 25 NetworkInfo(const std::string& guid); |
26 ~NetworkInfo(); | 26 ~NetworkInfo(); |
27 | 27 |
28 bool operator==(const NetworkInfo& other) const; | 28 bool operator==(const NetworkInfo& other) const; |
29 bool operator!=(const NetworkInfo& other) const { return !(*this == other); } | 29 bool operator!=(const NetworkInfo& other) const { return !(*this == other); } |
30 | 30 |
31 std::string guid; | 31 std::string guid; |
32 base::string16 label; | 32 base::string16 label; |
33 base::string16 tooltip; | 33 base::string16 tooltip; |
34 gfx::ImageSkia image; | 34 gfx::ImageSkia image; |
35 bool disable; | 35 bool disable; |
36 bool connected; | 36 bool connected; |
37 bool connecting; | 37 bool connecting; |
38 Type type; | 38 Type type; |
39 }; | 39 }; |
40 | 40 |
41 } // namespace ash | 41 } // namespace ash |
42 | 42 |
43 #endif // ASH_SYSTEM_NETWORK_NETWORK_INFO_H_ | 43 #endif // ASH_SYSTEM_NETWORK_NETWORK_INFO_H_ |
OLD | NEW |