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

Unified Diff: chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc

Issue 1551503002: Convert Pass()→std::move() in //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/common/extensions/manifest_handlers/ui_overrides_handler.cc
diff --git a/chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc b/chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc
index e5da7fa594978d51b071000e1a6ff37fe6e72252..8d5901ff6954467b9ff61d6304e74f635d4d39c6 100644
--- a/chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc
+++ b/chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc
@@ -51,7 +51,7 @@ class UIOverridesHandler::ManifestPermissionImpl : public ManifestPermission {
scoped_ptr<base::Value> ToValue() const override {
return scoped_ptr<base::Value>(
- new base::FundamentalValue(override_bookmarks_ui_permission_)).Pass();
+ new base::FundamentalValue(override_bookmarks_ui_permission_));
}
ManifestPermission* Diff(const ManifestPermission* rhs) const override {

Powered by Google App Engine
This is Rietveld 408576698