| Index: chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
|
| diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
|
| index be515b94deafa0b429832fa1900641eec0e9e583..ca99f93bcada93362b9d96c497237acf7a175fe8 100644
|
| --- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
|
| +++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
|
| @@ -889,7 +889,7 @@
|
| app_info.name, app_info.package_name, app_info.activity,
|
| std::string() /* intent_uri */, std::string() /* icon_resource_id */,
|
| false /* sticky */, true /* notifications_enabled */,
|
| - false /* shortcut */, true /* launchable */, app_info.orientation_lock);
|
| + false /* shortcut */, app_info.orientation_lock);
|
| const std::string app_id =
|
| ArcAppListPrefs::GetAppId(app_info.package_name, app_info.activity);
|
| EXPECT_TRUE(prefs->GetApp(app_id));
|
| @@ -899,8 +899,7 @@
|
| void NotifyOnTaskCreated(const arc::mojom::AppInfo& appinfo,
|
| int32_t task_id) {
|
| ArcAppListPrefs* const prefs = arc_test_.arc_app_list_prefs();
|
| - prefs->OnTaskCreated(task_id, appinfo.package_name, appinfo.activity,
|
| - appinfo.name);
|
| + prefs->OnTaskCreated(task_id, appinfo.package_name, appinfo.activity);
|
| }
|
|
|
| void NotifyOnTaskOrientationLockRequested(int32_t task_id,
|
|
|