Rewrite scoped_ptr<T>(NULL) to use the default ctor in chrome/.

This is the result of running the rewrite_scoped_ptr_ctor_null tool
across all files built on Linux in the chrome/ directory.

BUG=173286

Review URL: https://chromiumcodereview.appspot.com/16703018

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205866 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/extensions/external_provider_impl.cc b/chrome/browser/extensions/external_provider_impl.cc
index bde28f2e..5939375 100644
--- a/chrome/browser/extensions/external_provider_impl.cc
+++ b/chrome/browser/extensions/external_provider_impl.cc
@@ -63,22 +63,20 @@
 const char ExternalProviderImpl::kIsFromWebstore[] = "is_from_webstore";
 const char ExternalProviderImpl::kKeepIfPresent[] = "keep_if_present";
 
-ExternalProviderImpl::ExternalProviderImpl(
-    VisitorInterface* service,
-    ExternalLoader* loader,
-    Profile* profile,
-    Manifest::Location crx_location,
-    Manifest::Location download_location,
-    int creation_flags)
-  : crx_location_(crx_location),
-    download_location_(download_location),
-    service_(service),
-    prefs_(NULL),
-    ready_(false),
-    loader_(loader),
-    profile_(profile),
-    creation_flags_(creation_flags),
-    auto_acknowledge_(false) {
+ExternalProviderImpl::ExternalProviderImpl(VisitorInterface* service,
+                                           ExternalLoader* loader,
+                                           Profile* profile,
+                                           Manifest::Location crx_location,
+                                           Manifest::Location download_location,
+                                           int creation_flags)
+    : crx_location_(crx_location),
+      download_location_(download_location),
+      service_(service),
+      ready_(false),
+      loader_(loader),
+      profile_(profile),
+      creation_flags_(creation_flags),
+      auto_acknowledge_(false) {
   loader_->Init(this);
 }