| Index: ppapi/proxy/plugin_dispatcher.cc
|
| diff --git a/ppapi/proxy/plugin_dispatcher.cc b/ppapi/proxy/plugin_dispatcher.cc
|
| index 931471354e3e14239a534b3dde3bbd01c7876aa4..0a162a44fb4dc2f5ff378884d2084b1d8f9a6374 100644
|
| --- a/ppapi/proxy/plugin_dispatcher.cc
|
| +++ b/ppapi/proxy/plugin_dispatcher.cc
|
| @@ -99,6 +99,9 @@ PluginDispatcher* PluginDispatcher::GetForResource(const Resource* resource) {
|
|
|
| // static
|
| const void* PluginDispatcher::GetBrowserInterface(const char* interface_name) {
|
| + DCHECK(interface_name) << "|interface_name| is null. Did you forget to add "
|
| + "the |interface_name()| template function to the interface's C++ "
|
| + "wrapper?";
|
| return InterfaceList::GetInstance()->GetInterfaceForPPB(interface_name);
|
| }
|
|
|
|
|