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

Unified Diff: chrome/installer/util/shell_util.cc

Issue 1581083003: Remove useless std::move(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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: chrome/installer/util/shell_util.cc
diff --git a/chrome/installer/util/shell_util.cc b/chrome/installer/util/shell_util.cc
index b6b0ba92d2660e669e87e92902b8065c9e3bcfb4..604f6bed2195dc3fb3e7d79a32278da736a11369 100644
--- a/chrome/installer/util/shell_util.cc
+++ b/chrome/installer/util/shell_util.cc
@@ -15,7 +15,6 @@
#include <limits>
#include <string>
-#include <utility>
#include "base/bind.h"
#include "base/command_line.h"
@@ -274,7 +273,7 @@ ScopedVector<RegistryEntry> GetChromeDelegateExecuteEntries(
sub_path, ShellUtil::kRegDelegateExecute, app_info.delegate_clsid));
}
- return std::move(entries);
+ return entries;
}
// Gets the registry entries to register an application in the Windows registry.
« 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