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

Unified Diff: chrome/browser/ui/webui/webapks_handler.cc

Issue 2629573004: Add a chrome://webapks page. (Closed)
Patch Set: Adds an about:webapks page with information about all installed Web APKs on the device Created 3 years, 11 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/webui/webapks_handler.cc
diff --git a/chrome/browser/ui/webui/webapks_handler.cc b/chrome/browser/ui/webui/webapks_handler.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f946a610266fc124dd7e2037b506d4aa9f954980
--- /dev/null
+++ b/chrome/browser/ui/webui/webapks_handler.cc
@@ -0,0 +1,41 @@
+// Copyright (c) 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/webui/webapks_handler.h"
+
+#include "base/callback_forward.h"
+#include "chrome/browser/android/shortcut_helper.h"
+#include "content/public/browser/web_ui.h"
+
+WebApksHandler::WebApksHandler() : weak_ptr_factory_(this) {}
+
+WebApksHandler::~WebApksHandler() {}
+
+void WebApksHandler::RegisterMessages() {
+ web_ui()->RegisterMessageCallback("requestWebApksInfo",
+ base::Bind(&WebApksHandler::HandleRequestWebApksInfo,
+ base::Unretained(this)));
+}
+
+void WebApksHandler::HandleRequestWebApksInfo(const base::ListValue* args) {
+ // The WebApkInfoCallback will delete itself after it is done.
pkotwicz 2017/01/20 16:57:17 Nit: Delete the comment. I think that commenting
gonzalon 2017/01/20 19:27:01 Done.
+ ShortcutHelper::ListWebApks(base::Bind(
+ &WebApksHandler::OnWebApkInfoReceived, weak_ptr_factory_.GetWeakPtr()));
+}
+
+void WebApksHandler::OnWebApkInfoReceived(
+ std::vector<const WebApkInfo> webapks_list) {
+ base::ListValue list;
+ for (size_t i = 0; i < webapks_list.size(); ++i) {
+ const WebApkInfo webapk_info = webapks_list[i];
+ std::unique_ptr<base::DictionaryValue> result(new base::DictionaryValue());
+ result->SetString("shortName", webapk_info.short_name);
+ result->SetString("packageName", webapk_info.package_name);
+ result->SetInteger("shellApkVersion", webapk_info.shell_apk_version);
+ result->SetInteger("versionCode", webapk_info.version_code);
+ list.Append(std::move(result));
+ }
+
+ web_ui()->CallJavascriptFunctionUnsafe("returnWebApksInfo", list);
+}

Powered by Google App Engine
This is Rietveld 408576698