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

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

Issue 10827456: Remove PPB_Scrollbar_Dev and PPB_Widget_Dev from native client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Also remove PPB_PDF and associated tests Created 8 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/native_client/src/shared/ppapi_proxy/plugin_globals.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_globals.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_globals.cc
index 744beaed7067fae1cc24521fef872b295c9f6377..17aaf5e1a93ebc24dbe95e3f40830d469bdd2f92 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_globals.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_globals.cc
@@ -151,21 +151,11 @@ const PPP_Printing_Dev* PPPPrintingInterface() {
return static_cast<const PPP_Printing_Dev*>(ppp);
}
-const PPP_Scrollbar_Dev* PPPScrollbarInterface() {
- static const void* ppp = GetPluginInterfaceSafe(PPP_SCROLLBAR_DEV_INTERFACE);
- return static_cast<const PPP_Scrollbar_Dev*>(ppp);
-}
-
const PPP_Selection_Dev* PPPSelectionInterface() {
static const void* ppp = GetPluginInterfaceSafe(PPP_SELECTION_DEV_INTERFACE);
return static_cast<const PPP_Selection_Dev*>(ppp);
}
-const PPP_Widget_Dev* PPPWidgetInterface() {
- static const void* ppp = GetPluginInterfaceSafe(PPP_WIDGET_DEV_INTERFACE);
- return static_cast<const PPP_Widget_Dev*>(ppp);
-}
-
const PPP_Zoom_Dev* PPPZoomInterface() {
static const void* ppp = GetPluginInterfaceSafe(PPP_ZOOM_DEV_INTERFACE);
return static_cast<const PPP_Zoom_Dev*>(ppp);
« no previous file with comments | « ppapi/native_client/src/shared/ppapi_proxy/plugin_globals.h ('k') | ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698