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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc

Issue 9107046: PPAPI: Move PPB_ArrayBuffer out of Dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix gyp file, use 1_0 Created 8 years, 11 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/native_client/src/shared/ppapi_proxy/browser_globals.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc b/ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc
index 87e170e28eba20c1063ccbcd3dee0e6e76da20f4..3848ac58acb7362ea99a92ac6975ee209c3138a9 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/browser_globals.cc
@@ -311,10 +311,10 @@ const PPB_Var* PPBVarInterface() {
return ppb;
}
-const PPB_VarArrayBuffer_Dev* PPBVarArrayBufferInterface() {
- static const PPB_VarArrayBuffer_Dev* ppb =
- static_cast<const PPB_VarArrayBuffer_Dev*>(
- GetBrowserInterfaceSafe(PPB_VAR_ARRAY_BUFFER_DEV_INTERFACE));
+const PPB_VarArrayBuffer* PPBVarArrayBufferInterface() {
+ static const PPB_VarArrayBuffer* ppb =
+ static_cast<const PPB_VarArrayBuffer*>(
+ GetBrowserInterfaceSafe(PPB_VAR_ARRAY_BUFFER_INTERFACE));
return ppb;
}

Powered by Google App Engine
This is Rietveld 408576698