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

Unified Diff: chrome/browser/ui/cocoa/info_bubble_window.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/cocoa/info_bubble_window.h
diff --git a/chrome/browser/ui/cocoa/info_bubble_window.h b/chrome/browser/ui/cocoa/info_bubble_window.h
index 39f436a2dc2da5c3c226592f17bc1b06caaa01f6..156d100b562fcbeca834f46fd0ab60c5f2021675 100644
--- a/chrome/browser/ui/cocoa/info_bubble_window.h
+++ b/chrome/browser/ui/cocoa/info_bubble_window.h
@@ -4,7 +4,8 @@
#import <Cocoa/Cocoa.h>
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#import "chrome/browser/ui/cocoa/chrome_event_processing_window.h"
class AppNotificationBridge;
@@ -41,7 +42,7 @@ typedef NSUInteger AllowedAnimations;
BOOL allowShareParentKeyState_;
// Bridge to proxy Chrome notifications to the window.
- scoped_ptr<AppNotificationBridge> notificationBridge_;
+ std::unique_ptr<AppNotificationBridge> notificationBridge_;
}
@property(nonatomic) info_bubble::AllowedAnimations allowedAnimations;

Powered by Google App Engine
This is Rietveld 408576698