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

Unified Diff: extensions/common/manifest_handlers/requirements_info.cc

Issue 1908953003: Convert //extensions/{common,shell} from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase? Created 4 years, 8 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: extensions/common/manifest_handlers/requirements_info.cc
diff --git a/extensions/common/manifest_handlers/requirements_info.cc b/extensions/common/manifest_handlers/requirements_info.cc
index 9a2a22b92aaf39ddfb247ecbd48aa2754b749178..c89d974bd42f3ea9cf0ad9dff4356a892427d074 100644
--- a/extensions/common/manifest_handlers/requirements_info.cc
+++ b/extensions/common/manifest_handlers/requirements_info.cc
@@ -4,8 +4,9 @@
#include "extensions/common/manifest_handlers/requirements_info.h"
+#include <memory>
+
#include "base/lazy_instance.h"
-#include "base/memory/scoped_ptr.h"
#include "base/strings/utf_string_conversions.h"
#include "base/values.h"
#include "extensions/common/error_utils.h"
@@ -61,7 +62,7 @@ bool RequirementsHandler::AlwaysParseForType(Manifest::Type type) const {
}
bool RequirementsHandler::Parse(Extension* extension, base::string16* error) {
- scoped_ptr<RequirementsInfo> requirements(
+ std::unique_ptr<RequirementsInfo> requirements(
new RequirementsInfo(extension->manifest()));
if (!extension->manifest()->HasKey(keys::kRequirements)) {
« no previous file with comments | « extensions/common/manifest_handlers/requirements_info.h ('k') | extensions/common/manifest_handlers/sandboxed_page_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698