| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CHROMECAST_PUBLIC_CAST_SYS_INFO_H_ | 5 #ifndef CHROMECAST_PUBLIC_CAST_SYS_INFO_H_ |
| 6 #define CHROMECAST_PUBLIC_CAST_SYS_INFO_H_ | 6 #define CHROMECAST_PUBLIC_CAST_SYS_INFO_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 virtual std::string GetSystemBuildNumber() = 0; | 48 virtual std::string GetSystemBuildNumber() = 0; |
| 49 | 49 |
| 50 // Returns default country and locale baked from the factory. | 50 // Returns default country and locale baked from the factory. |
| 51 virtual std::string GetFactoryCountry() = 0; | 51 virtual std::string GetFactoryCountry() = 0; |
| 52 virtual std::string GetFactoryLocale(std::string* second_locale) = 0; | 52 virtual std::string GetFactoryLocale(std::string* second_locale) = 0; |
| 53 | 53 |
| 54 // Returns the name of the wifi interface used to connect to the internet. | 54 // Returns the name of the wifi interface used to connect to the internet. |
| 55 virtual std::string GetWifiInterface() = 0; | 55 virtual std::string GetWifiInterface() = 0; |
| 56 // Returns the name of the software AP interface. | 56 // Returns the name of the software AP interface. |
| 57 virtual std::string GetApInterface() = 0; | 57 virtual std::string GetApInterface() = 0; |
| 58 |
| 59 // Returns the vendor name of the GPU. |
| 60 virtual std::string GetGpuVendor() = 0; |
| 61 // Returns the model name of the GPU. |
| 62 virtual std::string GetGpuModel() = 0; |
| 58 }; | 63 }; |
| 59 | 64 |
| 60 } // namespace chromecast | 65 } // namespace chromecast |
| 61 | 66 |
| 62 #endif // CHROMECAST_PUBLIC_CAST_SYS_INFO_H_ | 67 #endif // CHROMECAST_PUBLIC_CAST_SYS_INFO_H_ |
| OLD | NEW |