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

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

Issue 16703018: Rewrite scoped_ptr<T>(NULL) to use the default ctor in chrome/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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_function.cc
diff --git a/chrome/browser/extensions/extension_function.cc b/chrome/browser/extensions/extension_function.cc
index fcf5cf6bf1806287b72c9750f595cecd54f24058..484abd7df666a2756eea28271aff92361b098b5d 100644
--- a/chrome/browser/extensions/extension_function.cc
+++ b/chrome/browser/extensions/extension_function.cc
@@ -55,10 +55,8 @@ ExtensionFunction::ExtensionFunction()
has_callback_(false),
include_incognito_(false),
user_gesture_(false),
- args_(NULL),
bad_message_(false),
- histogram_value_(extensions::functions::UNKNOWN) {
-}
+ histogram_value_(extensions::functions::UNKNOWN) {}
ExtensionFunction::~ExtensionFunction() {
}

Powered by Google App Engine
This is Rietveld 408576698