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

Unified Diff: chrome/browser/ui/ash/launcher/arc_app_window_launcher_item_controller.cc

Issue 1973603002: arc: Make Play Store item persistance in shelf. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase + policy_browsertest.cc Created 4 years, 7 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
Index: chrome/browser/ui/ash/launcher/arc_app_window_launcher_item_controller.cc
diff --git a/chrome/browser/ui/ash/launcher/arc_app_window_launcher_item_controller.cc b/chrome/browser/ui/ash/launcher/arc_app_window_launcher_item_controller.cc
index ce054cfc1583e9447d8f84de61cfbc78d3dab0b9..d4bda0472745dd6f961b784bc803a7c9fa11a37b 100644
--- a/chrome/browser/ui/ash/launcher/arc_app_window_launcher_item_controller.cc
+++ b/chrome/browser/ui/ash/launcher/arc_app_window_launcher_item_controller.cc
@@ -11,9 +11,13 @@
#include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h"
ArcAppWindowLauncherItemController::ArcAppWindowLauncherItemController(
- const std::string& app_id,
+ const std::string& shelf_app_id,
+ const std::string& arc_app_id,
ChromeLauncherController* controller)
- : AppWindowLauncherItemController(TYPE_APP, app_id, app_id, controller) {}
+ : AppWindowLauncherItemController(TYPE_APP,
+ shelf_app_id,
+ arc_app_id,
+ controller) {}
ArcAppWindowLauncherItemController::~ArcAppWindowLauncherItemController() {}

Powered by Google App Engine
This is Rietveld 408576698