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

Unified Diff: chromecast/public/cast_egl_platform_shlib.h

Issue 1059073002: Loads CastEglPlatform implementation from shared library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed all Chromium types from shared library interface Created 5 years, 9 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/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..8a711ecff49d6d5c12cbbe0f72d8d77374e333da
--- /dev/null
+++ b/chromecast/public/cast_egl_platform_shlib.h
@@ -0,0 +1,22 @@
+// 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 "chromecast_export.h"
+
+namespace chromecast {
+
+class CastEglPlatform;
+
+// Entry point for loading CastEglPlatform from shared library.
+class CHROMECAST_EXPORT CastEglPlatformShlib {
+ public:
+ static CastEglPlatform* Create();
byungchul 2015/04/03 05:58:17 Consider passing command line flags. Vendor may wa
halliwell 2015/04/04 01:40:06 Done.
+};
+
+}
+
+#endif // CHROMECAST_PUBLIC_CAST_EGL_PLATFORM_SHLIB_H_
« chromecast/public/cast_egl_platform.h ('K') | « chromecast/public/cast_egl_platform.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698