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

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: Remove shlib 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..c6c30c926fa7e057cb27f2780c2c8dc813f6d250
--- /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;
+
+scoped_ptr<CastSysInfo> CreateSysInfo();
+
+} // namespace chromecast
+
+#endif // CHROMECAST_BASE_CAST_SYS_INFO_H_

Powered by Google App Engine
This is Rietveld 408576698