Chromium Code Reviews| Index: chromecast/base/cast_sys_info.h |
| diff --git a/chromecast/base/cast_sys_info.h b/chromecast/base/cast_sys_info.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e9d8816a3648628b92b44a06ee35a30e2217e6e9 |
| --- /dev/null |
| +++ b/chromecast/base/cast_sys_info.h |
| @@ -0,0 +1,21 @@ |
| +// Copyright 2015 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_H_ |
| +#define CHROMECAST_BASE_CAST_SYS_INFO_H_ |
| + |
| +#include <string> |
| +#include <vector> |
| + |
| +#include "base/memory/scoped_ptr.h" |
| + |
| +namespace chromecast { |
| + |
| +class CastSysInfo; |
| + |
| +static scoped_ptr<CastSysInfo> CreateSysInfo(); |
|
byungchul
2015/04/20 23:51:14
remove static
derekjchow1
2015/04/21 21:48:34
Done.
|
| + |
| +} // namespace chromecast |
| + |
| +#endif // CHROMECAST_BASE_CAST_SYS_INFO_H_ |