| 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);
|
|
|