summaryrefslogtreecommitdiffstats
path: root/ppapi/shared_impl/ppb_opengles2_shared.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-06 23:42:21 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-06 23:42:21 +0000
commit65165551604da0f53f5f17fbe8e97363b9436cf5 (patch)
tree897e2b8202f24f08b939e30e60a094649fd6d0d3 /ppapi/shared_impl/ppb_opengles2_shared.h
parent5d80114534c28f69de8abf0d45507f0ec8fda217 (diff)
downloadchromium_src-65165551604da0f53f5f17fbe8e97363b9436cf5.zip
chromium_src-65165551604da0f53f5f17fbe8e97363b9436cf5.tar.gz
chromium_src-65165551604da0f53f5f17fbe8e97363b9436cf5.tar.bz2
Rename the shared_impl resource files to give them more regular names.
I keep getting confused between things like AudioImpl and PPB_Audio_Impl. This uses _shared for the names, so now we have _impl, _proxy, and _shared which makes more sense. I also removed the ppb_opengles2_impl file since it was just a forward to the shared version. BUG= TEST= Review URL: http://codereview.chromium.org/8790004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113290 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/shared_impl/ppb_opengles2_shared.h')
-rw-r--r--ppapi/shared_impl/ppb_opengles2_shared.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/ppapi/shared_impl/ppb_opengles2_shared.h b/ppapi/shared_impl/ppb_opengles2_shared.h
new file mode 100644
index 0000000..2b4c9f9
--- /dev/null
+++ b/ppapi/shared_impl/ppb_opengles2_shared.h
@@ -0,0 +1,21 @@
+// Copyright (c) 2011 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 PPAPI_SHARED_IMPL_PPB_OPENGLES2_SHARED_H_
+#define PPAPI_SHARED_IMPL_PPB_OPENGLES2_SHARED_H_
+
+#include "ppapi/c/ppb_opengles2.h"
+#include "ppapi/shared_impl/ppapi_shared_export.h"
+
+namespace ppapi {
+
+class PPAPI_SHARED_EXPORT PPB_OpenGLES2_Shared {
+ public:
+ static const PPB_OpenGLES2* GetInterface();
+};
+
+} // namespace ppapi
+
+#endif // PPAPI_SHARED_IMPL_PPB_OPENGLES2_SHARED_H_
+