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

Unified Diff: chrome/browser/ui/extensions/extension_install_ui_factory.h

Issue 1865213004: Convert //chrome/browser/ui 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: chrome/browser/ui/extensions/extension_install_ui_factory.h
diff --git a/chrome/browser/ui/extensions/extension_install_ui_factory.h b/chrome/browser/ui/extensions/extension_install_ui_factory.h
index 0e6214e3ab43889c54091e2fd8983f825c5d4b77..9026b38b2838c88bddeadbd668832090f310caad 100644
--- a/chrome/browser/ui/extensions/extension_install_ui_factory.h
+++ b/chrome/browser/ui/extensions/extension_install_ui_factory.h
@@ -5,7 +5,7 @@
#ifndef CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_INSTALL_UI_FACTORY_H_
#define CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_INSTALL_UI_FACTORY_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
namespace content {
class BrowserContext;
@@ -14,7 +14,7 @@ class BrowserContext;
namespace extensions {
class ExtensionInstallUI;
-scoped_ptr<extensions::ExtensionInstallUI> CreateExtensionInstallUI(
+std::unique_ptr<extensions::ExtensionInstallUI> CreateExtensionInstallUI(
content::BrowserContext* context);
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698