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

Unified Diff: content/common/plugin_list_unittest.cc

Issue 649533003: C++11 declares a type safe null pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Presubmit errors Created 6 years, 2 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
« no previous file with comments | « content/common/plugin_list.h ('k') | content/common/resource_messages.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/plugin_list_unittest.cc
diff --git a/content/common/plugin_list_unittest.cc b/content/common/plugin_list_unittest.cc
index 859ac136e244ed016bcdc1be5e7efc878a3e7a11..1951bc2a685b9d5eecc2869a7380a12ecf5339cf 100644
--- a/content/common/plugin_list_unittest.cc
+++ b/content/common/plugin_list_unittest.cc
@@ -98,7 +98,7 @@ TEST_F(PluginListTest, GetPluginInfoArray) {
plugin_list_.GetPluginInfoArray(target_url,
"application/octet-stream",
false, // allow_wildcard
- NULL, // use_stale
+ nullptr, // use_stale
false, // include_npapi
&plugins,
&actual_mime_types);
@@ -111,7 +111,7 @@ TEST_F(PluginListTest, GetPluginInfoArray) {
plugin_list_.GetPluginInfoArray(target_url,
kFooMimeType,
false, // allow_wildcard
- NULL, // use_stale
+ nullptr, // use_stale
false, // include_npapi
&plugins,
&actual_mime_types);
@@ -126,7 +126,7 @@ TEST_F(PluginListTest, GetPluginInfoArray) {
plugin_list_.GetPluginInfoArray(target_url,
"",
false, // allow_wildcard
- NULL, // use_stale
+ nullptr, // use_stale
false, // include_npapi
&plugins,
&actual_mime_types);
« no previous file with comments | « content/common/plugin_list.h ('k') | content/common/resource_messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698