OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROMECAST_BASE_CAST_SYS_INFO_DUMMY_H_ |
| 6 #define CHROMECAST_BASE_CAST_SYS_INFO_DUMMY_H_ |
| 7 |
| 8 #include "base/macros.h" |
| 9 #include "chromecast/public/cast_sys_info.h" |
| 10 |
| 11 namespace chromecast { |
| 12 |
| 13 class CastSysInfoDummy : public CastSysInfo { |
| 14 public: |
| 15 CastSysInfoDummy(); |
| 16 ~CastSysInfoDummy() override; |
| 17 |
| 18 // CastSysInfo implementation: |
| 19 BuildType GetBuildType() override; |
| 20 std::string GetSystemReleaseChannel() override; |
| 21 std::string GetSerialNumber() override; |
| 22 std::string GetProductName() override; |
| 23 std::string GetDeviceModel() override; |
| 24 std::string GetBoardName() override; |
| 25 std::string GetBoardRevision() override; |
| 26 std::string GetManufacturer() override; |
| 27 std::string GetSystemBuildNumber() override; |
| 28 std::string GetFactoryCountry() override; |
| 29 std::string GetFactoryLocale(std::string* second_locale) override; |
| 30 std::string GetWifiInterface() override; |
| 31 std::string GetApInterface() override; |
| 32 |
| 33 private: |
| 34 DISALLOW_COPY_AND_ASSIGN(CastSysInfoDummy); |
| 35 }; |
| 36 |
| 37 } // namespace chromecast |
| 38 |
| 39 #endif // CHROMECAST_BASE_CAST_SYS_INFO_DUMMY_H_ |
OLD | NEW |