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

Unified Diff: ppapi/cpp/dev/graphics_3d_dev.cc

Issue 7624003: Removed PPB_Graphics3D::GetString(). Versioning should be handled in pepper at a higher level. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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: ppapi/cpp/dev/graphics_3d_dev.cc
===================================================================
--- ppapi/cpp/dev/graphics_3d_dev.cc (revision 97019)
+++ ppapi/cpp/dev/graphics_3d_dev.cc (working copy)
@@ -37,15 +37,6 @@
Graphics3D_Dev::~Graphics3D_Dev() {
}
-// static
-Var Graphics3D_Dev::GetString(int32_t name) {
- if (!has_interface<PPB_Graphics3D_Dev>())
- return Var();
-
- return Var(Var::PassRef(),
- get_interface<PPB_Graphics3D_Dev>()->GetString(name));
-}
-
int32_t Graphics3D_Dev::GetAttribs(int32_t* attrib_list) const {
if (!has_interface<PPB_Graphics3D_Dev>())
return PP_ERROR_NOINTERFACE;

Powered by Google App Engine
This is Rietveld 408576698