Index: chromecast/public/cast_egl_platform_shlib.h |
diff --git a/chromecast/public/cast_egl_platform_shlib.h b/chromecast/public/cast_egl_platform_shlib.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4a091406f1a86df9e25d93a23c9f0d43a5a5b46e |
--- /dev/null |
+++ b/chromecast/public/cast_egl_platform_shlib.h |
@@ -0,0 +1,25 @@ |
+// 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_PUBLIC_CAST_EGL_PLATFORM_SHLIB_H_ |
+#define CHROMECAST_PUBLIC_CAST_EGL_PLATFORM_SHLIB_H_ |
+ |
+#include <string> |
+#include <vector> |
+ |
+#include "chromecast_export.h" |
+ |
+namespace chromecast { |
+ |
+class CastEglPlatform; |
+ |
+// Entry point for loading CastEglPlatform from shared library. |
+class CHROMECAST_EXPORT CastEglPlatformShlib { |
+ public: |
+ static CastEglPlatform* Create(const std::vector<std::string>& argv); |
+}; |
+ |
+} |
+ |
+#endif // CHROMECAST_PUBLIC_CAST_EGL_PLATFORM_SHLIB_H_ |