Index: webkit/plugins/ppapi/ppb_flash_impl.cc |
diff --git a/webkit/plugins/ppapi/ppb_flash_impl.cc b/webkit/plugins/ppapi/ppb_flash_impl.cc |
index 4042019f4456ee95df9f81163a179a16010b201b..b8e1049058be9473e09023545ef13f57fee8e3ca 100644 |
--- a/webkit/plugins/ppapi/ppb_flash_impl.cc |
+++ b/webkit/plugins/ppapi/ppb_flash_impl.cc |
@@ -266,6 +266,11 @@ void UpdateActivity(PP_Instance pp_instance) { |
// TODO(viettrungluu): Implement me. |
} |
+PP_Var GetDeviceID(PP_Instance pp_instance) { |
+ // TODO(brettw) implement me. |
+ return PP_MakeUndefined(); |
+} |
+ |
const PPB_Flash_11 ppb_flash_11 = { |
&SetInstanceAlwaysOnTop, |
&DrawGlyphs11, |
@@ -304,6 +309,22 @@ const PPB_Flash_12_1 ppb_flash_12_1 = { |
&UpdateActivity |
}; |
+const PPB_Flash_12_2 ppb_flash_12_2 = { |
+ &SetInstanceAlwaysOnTop, |
+ &DrawGlyphs, |
+ &GetProxyForURL, |
+ &Navigate, |
+ &RunMessageLoop, |
+ &QuitMessageLoop, |
+ &GetLocalTimeZoneOffset, |
+ &GetCommandLineArgs, |
+ &PreLoadFontWin, |
+ &IsRectTopmost, |
+ &InvokePrinting, |
+ &UpdateActivity, |
+ &GetDeviceID |
+}; |
+ |
} // namespace |
// static |