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

Unified Diff: chrome/browser/ui/webui/webapks_ui.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_ui.cc
diff --git a/chrome/browser/ui/webui/webapks_ui.cc b/chrome/browser/ui/webui/webapks_ui.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f56dcb3e25a0d95ff21d2bd506a26bd9b8178ba9
--- /dev/null
+++ b/chrome/browser/ui/webui/webapks_ui.cc
@@ -0,0 +1,42 @@
+// 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_ui.h"
+
+#include <string>
pkotwicz 2017/01/20 16:57:17 Nit: You should also include unordered_set
gonzalon 2017/01/20 19:27:01 Done.
+
+#include "chrome/browser/profiles/profile.h"
+#include "chrome/browser/ui/webui/webapks_handler.h"
+#include "chrome/common/url_constants.h"
+#include "chrome/grit/generated_resources.h"
+#include "components/grit/components_resources.h"
+#include "content/public/browser/web_ui.h"
+#include "content/public/browser/web_ui_data_source.h"
+
+using content::WebUIDataSource;
+
+namespace {
+
+WebUIDataSource* CreateWebApksUIDataSource() {
+ WebUIDataSource* html_source =
+ WebUIDataSource::Create(chrome::kChromeUIWebApksHost);
+ html_source->SetJsonPath("strings.js");
+ html_source->AddResourcePath("webapks.js", IDR_WEBAPKS_UI_JS);
+ html_source->AddResourcePath("about_webapks.css", IDR_WEBAPKS_UI_CSS);
+ html_source->SetDefaultResource(IDR_WEBAPKS_UI_HTML);
+ html_source->UseGzip(std::unordered_set<std::string>());
+
+ return html_source;
+}
+
+} // anonymous namespace
+
+WebApksUI::WebApksUI(content::WebUI* web_ui)
+ : content::WebUIController(web_ui) {
+ Profile* profile = Profile::FromWebUI(web_ui);
+ web_ui->AddMessageHandler(base::MakeUnique<WebApksHandler>());
+ WebUIDataSource::Add(profile, CreateWebApksUIDataSource());
+}
+
+WebApksUI::~WebApksUI() {}

Powered by Google App Engine
This is Rietveld 408576698