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

Unified Diff: components/version_ui/version_handler_helper.h

Issue 1917673002: Convert //components/[u-z]* from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . 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: components/version_ui/version_handler_helper.h
diff --git a/components/version_ui/version_handler_helper.h b/components/version_ui/version_handler_helper.h
index fbf57e79a8809c0107c8f4153d7d44b8a2548812..697049ecd92d5e7052c439c6a2eefcad7a37b723 100644
--- a/components/version_ui/version_handler_helper.h
+++ b/components/version_ui/version_handler_helper.h
@@ -5,7 +5,7 @@
#ifndef COMPONENTS_VERSION_UI_VERSION_HANDLER_HELPER_H_
#define COMPONENTS_VERSION_UI_VERSION_HANDLER_HELPER_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
namespace base {
class Value;
@@ -14,7 +14,7 @@ class Value;
namespace version_ui {
// Returns the list of variations to be displayed on the chrome:://version page.
-scoped_ptr<base::Value> GetVariationsList();
+std::unique_ptr<base::Value> GetVariationsList();
} // namespace version_ui
« no previous file with comments | « components/variations/variations_seed_processor_unittest.cc ('k') | components/version_ui/version_handler_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698