Index: chrome/browser/safe_browsing/incident_reporting/platform_state_store.cc |
diff --git a/chrome/browser/safe_browsing/incident_reporting/platform_state_store.cc b/chrome/browser/safe_browsing/incident_reporting/platform_state_store.cc |
index d367cd80be18750f20e1841f0f1d01598ed6e60e..59aeda4649b310adc53b8d2093dc4a07392ce3d0 100644 |
--- a/chrome/browser/safe_browsing/incident_reporting/platform_state_store.cc |
+++ b/chrome/browser/safe_browsing/incident_reporting/platform_state_store.cc |
@@ -154,9 +154,9 @@ scoped_ptr<base::DictionaryValue> Load(Profile* profile) { |
UMA_HISTOGRAM_ENUMERATION( |
"SBIRS.PSSLoadResult", static_cast<uint32_t>(result), |
static_cast<uint32_t>(PlatformStateStoreLoadResult::NUM_RESULTS)); |
- return value_dict.Pass(); |
+ return value_dict; |
#else |
- return scoped_ptr<base::DictionaryValue>(); |
+ return nullptr; |
#endif |
} |