Index: ppapi/proxy/plugin_globals.h |
diff --git a/ppapi/proxy/plugin_globals.h b/ppapi/proxy/plugin_globals.h |
index 53eb18a3a045665097a873d1e477854d3d575455..5dc614d239bd72f24e84a11b9fd8290f72facdf8 100644 |
--- a/ppapi/proxy/plugin_globals.h |
+++ b/ppapi/proxy/plugin_globals.h |
@@ -99,8 +99,10 @@ |
return &plugin_var_tracker_; |
} |
- // The embedder should call SetPluginProxyDelegate during startup. |
- void SetPluginProxyDelegate(PluginProxyDelegate* d); |
+ // The embedder should call set_proxy_delegate during startup. |
+ void set_plugin_proxy_delegate(PluginProxyDelegate* d) { |
+ plugin_proxy_delegate_ = d; |
+ } |
// Returns the TLS slot that holds the message loop TLS. |
// |