Index: chrome/browser/web_applications/web_app_mac.mm |
diff --git a/chrome/browser/web_applications/web_app_mac.mm b/chrome/browser/web_applications/web_app_mac.mm |
index 274154e84ec2c5049e145caa2dbcc4db11b46ff2..22a153eac743814e4b18aabe0a5131b8c4fb8332 100644 |
--- a/chrome/browser/web_applications/web_app_mac.mm |
+++ b/chrome/browser/web_applications/web_app_mac.mm |
@@ -8,6 +8,8 @@ |
#import <Cocoa/Cocoa.h> |
#include <stdint.h> |
+#include <utility> |
+ |
#include "base/command_line.h" |
#include "base/files/file_enumerator.h" |
#include "base/files/file_util.h" |
@@ -309,7 +311,7 @@ void UpdateAndLaunchShimOnFileThread( |
shortcut_info->profile_path, shortcut_info->extension_id, GURL()); |
UpdatePlatformShortcutsInternal(shortcut_data_dir, base::string16(), |
*shortcut_info, file_handlers_info); |
- LaunchShimOnFileThread(shortcut_info.Pass(), true); |
+ LaunchShimOnFileThread(std::move(shortcut_info), true); |
} |
void UpdateAndLaunchShim( |