Index: webkit/glue/plugins/pepper_plugin_module.cc |
diff --git a/webkit/glue/plugins/pepper_plugin_module.cc b/webkit/glue/plugins/pepper_plugin_module.cc |
index 230c31fa55e070a9b257fdb70524b935b8c90629..c20551e43c192ebb1cfaff2bdd73c0dccdc76d3b 100644 |
--- a/webkit/glue/plugins/pepper_plugin_module.cc |
+++ b/webkit/glue/plugins/pepper_plugin_module.cc |
@@ -21,6 +21,7 @@ |
#include "third_party/ppapi/c/dev/ppb_file_system_dev.h" |
#include "third_party/ppapi/c/dev/ppb_find_dev.h" |
#include "third_party/ppapi/c/dev/ppb_font_dev.h" |
+#include "third_party/ppapi/c/dev/ppb_fullscreen_dev.h" |
#include "third_party/ppapi/c/dev/ppb_graphics_3d_dev.h" |
#include "third_party/ppapi/c/dev/ppb_opengles_dev.h" |
#include "third_party/ppapi/c/dev/ppb_scrollbar_dev.h" |
@@ -227,6 +228,8 @@ const void* GetInterface(const char* name) { |
return Font::GetInterface(); |
if (strcmp(name, PPB_FIND_DEV_INTERFACE) == 0) |
return PluginInstance::GetFindInterface(); |
+ if (strcmp(name, PPB_FULLSCREEN_DEV_INTERFACE) == 0) |
+ return PluginInstance::GetFullscreenInterface(); |
if (strcmp(name, PPB_URLUTIL_DEV_INTERFACE) == 0) |
return UrlUtil::GetInterface(); |
if (strcmp(name, PPB_PRIVATE_INTERFACE) == 0) |