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

Unified Diff: chrome/browser/ui/app_list/arc/arc_playstore_app_context_menu.cc

Issue 2929273002: Add the Play Store app search to the launcher. (Closed)
Patch Set: Fix unittest build failure. Created 3 years, 6 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/app_list/arc/arc_playstore_app_context_menu.cc
diff --git a/chrome/browser/ui/app_list/arc/arc_playstore_app_context_menu.cc b/chrome/browser/ui/app_list/arc/arc_playstore_app_context_menu.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4a92b361ce9daa7633c6cb894bf5dcb1a058743c
--- /dev/null
+++ b/chrome/browser/ui/app_list/arc/arc_playstore_app_context_menu.cc
@@ -0,0 +1,43 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/ui/app_list/arc/arc_playstore_app_context_menu.h"
+
+#include <string>
+
+#include "chrome/browser/ui/app_list/app_context_menu_delegate.h"
+#include "chrome/grit/generated_resources.h"
+
+ArcPlayStoreAppContextMenu::ArcPlayStoreAppContextMenu(
+ app_list::AppContextMenuDelegate* delegate,
+ Profile* profile,
+ AppListControllerDelegate* controller)
+ : app_list::AppContextMenu(delegate, profile, std::string(), controller) {}
+
+ArcPlayStoreAppContextMenu::~ArcPlayStoreAppContextMenu() = default;
+
+void ArcPlayStoreAppContextMenu::BuildMenu(ui::SimpleMenuModel* menu_model) {
+ // App Info item.
+ menu_model->AddItemWithStringId(INSTALL, IDS_APP_CONTEXT_MENU_INSTALL_ARC);
+}
+
+bool ArcPlayStoreAppContextMenu::IsCommandIdEnabled(int command_id) const {
+ switch (command_id) {
+ case INSTALL:
+ return true;
+ default:
+ return app_list::AppContextMenu::IsCommandIdEnabled(command_id);
+ }
+}
+
+void ArcPlayStoreAppContextMenu::ExecuteCommand(int command_id,
+ int event_flags) {
+ switch (command_id) {
+ case INSTALL:
+ delegate()->ExecuteLaunchCommand(event_flags);
+ break;
+ default:
+ app_list::AppContextMenu::ExecuteCommand(command_id, event_flags);
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698