cast_sys_info_util_simple.cc 442 B

123456789101112131415161718
  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. #include <memory>
  5. #include "chromecast/base/cast_sys_info_util.h"
  6. #include "chromecast/base/cast_sys_info_dummy.h"
  7. namespace chromecast {
  8. // static
  9. std::unique_ptr<CastSysInfo> CreateSysInfo() {
  10. return std::make_unique<CastSysInfoDummy>();
  11. }
  12. } // namespace chromecast