| Index: remoting/client/plugin/pepper_entrypoints.cc
|
| diff --git a/remoting/client/plugin/pepper_entrypoints.cc b/remoting/client/plugin/pepper_entrypoints.cc
|
| index a5e6142cc346012b4e85ad34df92d48af8a291c8..21e0c8486baa071b0e3d9bf8a416953922183bb1 100644
|
| --- a/remoting/client/plugin/pepper_entrypoints.cc
|
| +++ b/remoting/client/plugin/pepper_entrypoints.cc
|
| @@ -59,4 +59,10 @@ const void* PPP_GetInterface(const char* interface_name) {
|
| return pp::Module::Get()->GetPluginInterface(interface_name);
|
| }
|
|
|
| +const void* PPP_GetBrowserInterface(const char* interface_name) {
|
| + if (!pp::Module::Get())
|
| + return NULL;
|
| + return pp::Module::Get()->GetBrowserInterface(interface_name);
|
| +}
|
| +
|
| } // namespace remoting
|
|
|