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

Unified Diff: components/sync/protocol/proto_value_conversions_unittest.cc

Issue 2427803002: [Sync] Replacing NULL with nullptr in code and null in comments for components/sync/ (Closed)
Patch Set: Fixing start of sentence capitlization. Created 4 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
Index: components/sync/protocol/proto_value_conversions_unittest.cc
diff --git a/components/sync/protocol/proto_value_conversions_unittest.cc b/components/sync/protocol/proto_value_conversions_unittest.cc
index 24bf6b120cc1d4996ec31d258f6c49ae8dbbfdac..19b0c8e8963f8cad5c71e4568b4d6290141c5aea 100644
--- a/components/sync/protocol/proto_value_conversions_unittest.cc
+++ b/components/sync/protocol/proto_value_conversions_unittest.cc
@@ -360,9 +360,9 @@ namespace {
// path.
bool ValueHasSpecifics(const base::DictionaryValue& value,
const std::string& path) {
- const base::ListValue* entities_list = NULL;
- const base::DictionaryValue* entry_dictionary = NULL;
- const base::DictionaryValue* specifics_dictionary = NULL;
+ const base::ListValue* entities_list = nullptr;
+ const base::DictionaryValue* entry_dictionary = nullptr;
+ const base::DictionaryValue* specifics_dictionary = nullptr;
if (!value.GetList(path, &entities_list))
return false;

Powered by Google App Engine
This is Rietveld 408576698