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

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: IWYU: <utility> 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..9b93593dc2e413f5d22d50995a5fac0fb5e977f8 100644
--- a/ui/base/dragdrop/os_exchange_data_provider_aurax11.cc
+++ b/ui/base/dragdrop/os_exchange_data_provider_aurax11.cc
@@ -4,6 +4,8 @@
#include "ui/base/dragdrop/os_exchange_data_provider_aurax11.h"
+#include <utility>
+
#include "base/logging.h"
#include "base/memory/ref_counted_memory.h"
#include "base/strings/string_split.h"
@@ -112,7 +114,7 @@ OSExchangeDataProviderAuraX11::Clone() const {
std::unique_ptr<OSExchangeDataProviderAuraX11> ret(
new OSExchangeDataProviderAuraX11());
ret->format_map_ = format_map_;
- return ret;
+ return std::move(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