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

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

Issue 1092283003: [Chromecast] CastSysInfo implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits. 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
« no previous file with comments | « chromecast/DEPS ('k') | chromecast/base/cast_sys_info_dummy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #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_
OLDNEW
« no previous file with comments | « chromecast/DEPS ('k') | chromecast/base/cast_sys_info_dummy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698