| 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 #include "chromecast/base/cast_sys_info_dummy.h" | 5 #include "chromecast/base/cast_sys_info_dummy.h" |
| 6 | 6 |
| 7 namespace chromecast { | 7 namespace chromecast { |
| 8 | 8 |
| 9 CastSysInfoDummy::CastSysInfoDummy() { | 9 CastSysInfoDummy::CastSysInfoDummy() { |
| 10 } | 10 } |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 } | 57 } |
| 58 | 58 |
| 59 std::string CastSysInfoDummy::GetWifiInterface() { | 59 std::string CastSysInfoDummy::GetWifiInterface() { |
| 60 return ""; | 60 return ""; |
| 61 } | 61 } |
| 62 | 62 |
| 63 std::string CastSysInfoDummy::GetApInterface() { | 63 std::string CastSysInfoDummy::GetApInterface() { |
| 64 return ""; | 64 return ""; |
| 65 } | 65 } |
| 66 | 66 |
| 67 std::string CastSysInfoDummy::GetGpuVendor() { |
| 68 return ""; |
| 69 } |
| 70 |
| 71 std::string CastSysInfoDummy::GetGpuModel() { |
| 72 return ""; |
| 73 } |
| 74 |
| 67 } // namespace chromecast | 75 } // namespace chromecast |
| OLD | NEW |