Index: ppapi/proxy/plugin_globals.cc |
diff --git a/ppapi/proxy/plugin_globals.cc b/ppapi/proxy/plugin_globals.cc |
index 5218dc40b7a84960edc375548a05bf0edac8396e..95c96ee05e106c3ccf522abb286faff69c930ddb 100644 |
--- a/ppapi/proxy/plugin_globals.cc |
+++ b/ppapi/proxy/plugin_globals.cc |
@@ -5,6 +5,7 @@ |
#include "ppapi/proxy/plugin_globals.h" |
#include "ppapi/proxy/plugin_dispatcher.h" |
+#include "ppapi/proxy/plugin_proxy_delegate.h" |
#include "ppapi/thunk/enter.h" |
namespace ppapi { |
@@ -59,6 +60,14 @@ PP_Module PluginGlobals::GetModuleForInstance(PP_Instance instance) { |
return 0; |
} |
+std::string PluginGlobals::GetCmdLine() { |
+ return command_line_; |
+} |
+ |
+void PluginGlobals::PreCacheFontForFlash(const void* logfontw) { |
+ plugin_proxy_delegate_->PreCacheFont(logfontw); |
+} |
+ |
base::Lock* PluginGlobals::GetProxyLock() { |
#ifdef ENABLE_PEPPER_THREADING |
return &proxy_lock_; |