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

Unified Diff: chromecast/base/cast_sys_info.h

Issue 1092283003: [Chromecast] CastSysInfo implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated comments. 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 side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698