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_BASE_CAST_SYS_INFO_DUMMY_H_ | 5 #ifndef CHROMECAST_BASE_CAST_SYS_INFO_DUMMY_H_ |
6 #define CHROMECAST_BASE_CAST_SYS_INFO_DUMMY_H_ | 6 #define CHROMECAST_BASE_CAST_SYS_INFO_DUMMY_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "chromecast/public/cast_sys_info.h" | 9 #include "chromecast/public/cast_sys_info.h" |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 std::string GetProductName() override; | 22 std::string GetProductName() override; |
23 std::string GetDeviceModel() override; | 23 std::string GetDeviceModel() override; |
24 std::string GetBoardName() override; | 24 std::string GetBoardName() override; |
25 std::string GetBoardRevision() override; | 25 std::string GetBoardRevision() override; |
26 std::string GetManufacturer() override; | 26 std::string GetManufacturer() override; |
27 std::string GetSystemBuildNumber() override; | 27 std::string GetSystemBuildNumber() override; |
28 std::string GetFactoryCountry() override; | 28 std::string GetFactoryCountry() override; |
29 std::string GetFactoryLocale(std::string* second_locale) override; | 29 std::string GetFactoryLocale(std::string* second_locale) override; |
30 std::string GetWifiInterface() override; | 30 std::string GetWifiInterface() override; |
31 std::string GetApInterface() override; | 31 std::string GetApInterface() override; |
| 32 std::string GetGpuVendor() override; |
| 33 std::string GetGpuModel() override; |
32 | 34 |
33 private: | 35 private: |
34 DISALLOW_COPY_AND_ASSIGN(CastSysInfoDummy); | 36 DISALLOW_COPY_AND_ASSIGN(CastSysInfoDummy); |
35 }; | 37 }; |
36 | 38 |
37 } // namespace chromecast | 39 } // namespace chromecast |
38 | 40 |
39 #endif // CHROMECAST_BASE_CAST_SYS_INFO_DUMMY_H_ | 41 #endif // CHROMECAST_BASE_CAST_SYS_INFO_DUMMY_H_ |
OLD | NEW |