| Index: remoting/client/plugin/pepper_entrypoints.cc
|
| diff --git a/remoting/client/plugin/pepper_entrypoints.cc b/remoting/client/plugin/pepper_entrypoints.cc
|
| index e337ed2db7abfdd8c2dbc26952ff6477920344a0..f6086c36cf0fe3203b79b8847f2659628066a065 100644
|
| --- a/remoting/client/plugin/pepper_entrypoints.cc
|
| +++ b/remoting/client/plugin/pepper_entrypoints.cc
|
| @@ -43,18 +43,18 @@ int32_t PPP_InitializeModule(PP_Module module_id,
|
|
|
| void PPP_ShutdownModule() {
|
| delete pp::Module::Get();
|
| - pp::InternalSetModuleSingleton(NULL);
|
| + pp::InternalSetModuleSingleton(nullptr);
|
| }
|
|
|
| const void* PPP_GetInterface(const char* interface_name) {
|
| if (!pp::Module::Get())
|
| - return NULL;
|
| + return nullptr;
|
| return pp::Module::Get()->GetPluginInterface(interface_name);
|
| }
|
|
|
| const void* PPP_GetBrowserInterface(const char* interface_name) {
|
| if (!pp::Module::Get())
|
| - return NULL;
|
| + return nullptr;
|
| return pp::Module::Get()->GetBrowserInterface(interface_name);
|
| }
|
|
|
|
|