Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Unified Diff: remoting/client/plugin/pepper_entrypoints.cc

Issue 810133003: replace NULL->nullptr in src/remoting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
« no previous file with comments | « remoting/client/plugin/delegating_signal_strategy.cc ('k') | remoting/client/plugin/pepper_input_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698