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

Unified Diff: content/browser/web_contents/web_drag_dest_mac.h

Issue 1874893002: Convert //content/browser 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: content/browser/web_contents/web_drag_dest_mac.h
diff --git a/content/browser/web_contents/web_drag_dest_mac.h b/content/browser/web_contents/web_drag_dest_mac.h
index 63a9efa417d1a794b9295ef71e0f6b7935c85af8..2598ee0e886d265a7f0759a8574e7c91ef1c10c9 100644
--- a/content/browser/web_contents/web_drag_dest_mac.h
+++ b/content/browser/web_contents/web_drag_dest_mac.h
@@ -4,7 +4,8 @@
#import <Cocoa/Cocoa.h>
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#include "base/strings/string16.h"
#include "content/common/content_export.h"
#include "content/public/common/drop_data.h"
@@ -39,7 +40,7 @@ CONTENT_EXPORT
RenderViewHostIdentifier currentRVH_;
// The data for the current drag, or NULL if none is in progress.
- scoped_ptr<content::DropData> dropData_;
+ std::unique_ptr<content::DropData> dropData_;
// True if the drag has been canceled.
bool canceled_;

Powered by Google App Engine
This is Rietveld 408576698