Chromium Code Reviews| 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() {} |