blob: 867447665a7d41c52cb6d6b82ac0aac21c24daf4 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMECAST_BASE_CAST_SYS_INFO_ANDROID_THINGS_H_
#define CHROMECAST_BASE_CAST_SYS_INFO_ANDROID_THINGS_H_
#include <vector>
#include "chromecast/base/cast_sys_info_android.h"
namespace chromecast {
class CastSysInfoAndroidThings : public CastSysInfoAndroid {
public:
CastSysInfoAndroidThings();
~CastSysInfoAndroidThings() override;
// CastSysInfo implementation:
std::string GetProductName() override;
std::string GetDeviceModel() override;
std::string GetManufacturer() override;
std::string GetSystemReleaseChannel() override;
std::vector<std::string> GetFactoryLocaleList() override;
};
} // namespace chromecast
#endif // CHROMECAST_BASE_CAST_SYS_INFO_ANDROID_THINGS_H_