Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Side by Side Diff: chromecast/base/cast_sys_info_dummy.cc

Issue 1092283003: [Chromecast] CastSysInfo implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove shlib Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 #include "chromecast/base/cast_sys_info_dummy.h"
6
7 namespace chromecast {
8
9 CastSysInfoDummy::CastSysInfoDummy() {
10 }
11
12 CastSysInfoDummy::~CastSysInfoDummy() {
13 }
14
15 CastSysInfo::BuildType CastSysInfoDummy::GetBuildType() {
16 return BUILD_ENG;
17 }
18
19 std::string CastSysInfoDummy::GetSystemReleaseChannel() {
20 return "";
21 }
22
23 std::string CastSysInfoDummy::GetSerialNumber() {
24 return "dummy.serial.number";
25 }
26
27 std::string CastSysInfoDummy::GetProductName() {
28 return "";
29 }
30
31 std::string CastSysInfoDummy::GetDeviceModel() {
32 return "";
33 }
34
35 std::string CastSysInfoDummy::GetBoardName() {
36 return "";
37 }
38
39 std::string CastSysInfoDummy::GetBoardRevision() {
40 return "";
41 }
42
43 std::string CastSysInfoDummy::GetManufacturer() {
44 return "";
45 }
46
47 std::string CastSysInfoDummy::GetSystemBuildNumber() {
48 return "";
49 }
50
51 std::string CastSysInfoDummy::GetFactoryCountry() {
52 return "US";
53 }
54
55 std::string CastSysInfoDummy::GetFactoryLocale(std::string* second_locale) {
56 return "en-US";
57 }
58
59 std::string CastSysInfoDummy::GetWifiInterface() {
60 return "";
61 }
62
63 std::string CastSysInfoDummy::GetApInterface() {
64 return "";
65 }
66
67 } // namespace chromecast
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698