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

Unified Diff: chrome/browser/ui/screen_capture_notification_ui_stub.cc

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
« no previous file with comments | « chrome/browser/ui/screen_capture_notification_ui.h ('k') | chrome/browser/ui/search/instant_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/screen_capture_notification_ui_stub.cc
diff --git a/chrome/browser/ui/screen_capture_notification_ui_stub.cc b/chrome/browser/ui/screen_capture_notification_ui_stub.cc
index 0eab3ee91d2fd4cc6dda8f44f6ef37070da5d733..980989a909c43fa340bdd24c97fb9e3453a6dbab 100644
--- a/chrome/browser/ui/screen_capture_notification_ui_stub.cc
+++ b/chrome/browser/ui/screen_capture_notification_ui_stub.cc
@@ -19,8 +19,8 @@ class ScreenCaptureNotificationUIStub : public ScreenCaptureNotificationUI {
};
// static
-scoped_ptr<ScreenCaptureNotificationUI> ScreenCaptureNotificationUI::Create(
- const base::string16& title) {
- return scoped_ptr<ScreenCaptureNotificationUI>(
+std::unique_ptr<ScreenCaptureNotificationUI>
+ScreenCaptureNotificationUI::Create(const base::string16& title) {
+ return std::unique_ptr<ScreenCaptureNotificationUI>(
new ScreenCaptureNotificationUIStub());
}
« no previous file with comments | « chrome/browser/ui/screen_capture_notification_ui.h ('k') | chrome/browser/ui/search/instant_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698