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..545e060da274965bd06a5cf5c3f5dd9e64afaba5 |
--- /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 "base/values.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) { |
+ ShortcutHelper::ListWebApks(base::Bind( |
+ &WebApksHandler::OnWebApkInfoReceived, weak_ptr_factory_.GetWeakPtr())); |
+} |
+ |
+void WebApksHandler::OnWebApkInfoReceived( |
dominickn
2017/01/23 00:48:07
Retrieved instead of Received?
gonzalon
2017/01/23 16:58:51
Done.
|
+ std::vector<const WebApkInfo>& webapks_list) { |
dominickn
2017/01/23 00:48:07
const std::vector<const WebApkInfo>& webapk_list
gonzalon
2017/01/23 16:58:51
Done.
|
+ 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); |
+} |