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

Unified Diff: chrome/browser/extensions/extension_install_prompt.cc

Issue 2152373003: [Extensions] Code Cleanup - Remove redundant smart-ptr get()s (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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: chrome/browser/extensions/extension_install_prompt.cc
diff --git a/chrome/browser/extensions/extension_install_prompt.cc b/chrome/browser/extensions/extension_install_prompt.cc
index 66f6814862f5ca25a50b6024bd433fa573e2fc52..8e9d4e353d8fa9750da9e7e36f4830f7e18893a2 100644
--- a/chrome/browser/extensions/extension_install_prompt.cc
+++ b/chrome/browser/extensions/extension_install_prompt.cc
@@ -599,11 +599,8 @@ scoped_refptr<Extension>
}
return Extension::Create(
- base::FilePath(),
- Manifest::INTERNAL,
- localized_manifest.get() ? *localized_manifest.get() : *manifest,
- flags,
- id,
+ base::FilePath(), Manifest::INTERNAL,
+ localized_manifest.get() ? *localized_manifest : *manifest, flags, id,
error);
}

Powered by Google App Engine
This is Rietveld 408576698