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

Unified Diff: ui/base/dragdrop/os_exchange_data_provider_aurax11.cc

Issue 2192533002: (gcc) fix compilation of os_exchange_data_provider_aurax11.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/dragdrop/os_exchange_data_provider_aurax11.cc
diff --git a/ui/base/dragdrop/os_exchange_data_provider_aurax11.cc b/ui/base/dragdrop/os_exchange_data_provider_aurax11.cc
index a0f13fa6e39945c614d2e43762996de87b024900..a8e1ca0b075173acd9a21f01ce24ce45ace63267 100644
--- a/ui/base/dragdrop/os_exchange_data_provider_aurax11.cc
+++ b/ui/base/dragdrop/os_exchange_data_provider_aurax11.cc
@@ -5,6 +5,7 @@
#include "ui/base/dragdrop/os_exchange_data_provider_aurax11.h"
#include "base/logging.h"
+#include "base/memory/ptr_util.h"
#include "base/memory/ref_counted_memory.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
@@ -109,10 +110,10 @@ SelectionFormatMap OSExchangeDataProviderAuraX11::GetFormatMap() const {
std::unique_ptr<OSExchangeData::Provider>
OSExchangeDataProviderAuraX11::Clone() const {
- std::unique_ptr<OSExchangeDataProviderAuraX11> ret(
- new OSExchangeDataProviderAuraX11());
+ OSExchangeDataProviderAuraX11* ret = new OSExchangeDataProviderAuraX11();
ret->format_map_ = format_map_;
- return ret;
dcheng 2016/07/27 17:05:44 Please keep the original code and just use std::mo
Mostyn Bramley-Moore 2016/07/27 17:34:11 Done.
+
+ return base::WrapUnique<OSExchangeData::Provider>(ret);
}
void OSExchangeDataProviderAuraX11::MarkOriginatedFromRenderer() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698