| Index: chrome/browser/web_applications/web_app_linux.cc
|
| diff --git a/chrome/browser/web_applications/web_app_linux.cc b/chrome/browser/web_applications/web_app_linux.cc
|
| index a1429aeb7a5556ee7114b1adf6bf00552c6714b5..2a6e81363e39d0dbf153a0a1fd78ce2391d26c53 100644
|
| --- a/chrome/browser/web_applications/web_app_linux.cc
|
| +++ b/chrome/browser/web_applications/web_app_linux.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/browser/web_applications/web_app.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/environment.h"
|
| #include "base/logging.h"
|
| #include "build/build_config.h"
|
| @@ -62,7 +64,7 @@ void UpdatePlatformShortcuts(
|
| if (creation_locations.applications_menu_location == APP_MENU_LOCATION_NONE)
|
| creation_locations.applications_menu_location = APP_MENU_LOCATION_HIDDEN;
|
|
|
| - CreatePlatformShortcuts(web_app_path, shortcut_info.Pass(),
|
| + CreatePlatformShortcuts(web_app_path, std::move(shortcut_info),
|
| file_handlers_info, creation_locations,
|
| SHORTCUT_CREATION_AUTOMATED);
|
| }
|
|
|