From 02c29b3895a09d2b62391e5241fe6f6026cf6a65 Mon Sep 17 00:00:00 2001 From: "dcheng@chromium.org" Date: Thu, 13 Jun 2013 18:01:07 +0000 Subject: Rewrite scoped_ptr(NULL) to use the default ctor in base/. This is the result of running the rewrite_scoped_ptr_ctor_null tool across all files built on Linux in the base/ directory. BUG=173286 Review URL: https://chromiumcodereview.appspot.com/16950008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206116 0039d316-1c4b-4281-b951-d872f2087c98 --- base/prefs/json_pref_store.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'base/prefs') diff --git a/base/prefs/json_pref_store.cc b/base/prefs/json_pref_store.cc index 1334abf..e7337a1 100644 --- a/base/prefs/json_pref_store.cc +++ b/base/prefs/json_pref_store.cc @@ -157,10 +157,8 @@ JsonPrefStore::JsonPrefStore(const base::FilePath& filename, prefs_(new DictionaryValue()), read_only_(false), writer_(filename, sequenced_task_runner), - error_delegate_(NULL), initialized_(false), - read_error_(PREF_READ_ERROR_OTHER) { -} + read_error_(PREF_READ_ERROR_OTHER) {} bool JsonPrefStore::GetValue(const std::string& key, const Value** result) const { -- cgit v1.1