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

Unified Diff: ui/oobe/oobe_ui.cc

Issue 941973003: New OOBE implementation skeleton using WUG toolkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Builds with gn using is_component_build=false. Created 5 years, 10 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
« ui/oobe/OWNERS ('K') | « ui/oobe/oobe_ui.h ('k') | ui/oobe/oobe_ui.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/oobe/oobe_ui.cc
diff --git a/ui/oobe/oobe_ui.cc b/ui/oobe/oobe_ui.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d31d1f3c6fca02f52f2b05908148c0bb8ad40139
--- /dev/null
+++ b/ui/oobe/oobe_ui.cc
@@ -0,0 +1,37 @@
+// Copyright 2015 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 "content/public/browser/web_contents.h"
+#include "content/public/browser/web_ui_data_source.h"
+#include "grit/oobe_ui_resources.h"
+#include "ui/oobe/declarations/oobe_web_ui_view.h"
+#include "ui/oobe/oobe_ui.h"
+
+namespace {
+
+void SetUpDataSource(content::WebUIDataSource* source) {
+ source->SetJsonPath("strings.js");
+ source->AddResourcePath("", IDR_OOBE_UI_HTML);
+ source->AddResourcePath("oobe_ui.js", IDR_OOBE_UI_JS);
+ source->AddResourcePath("oobe-element.html", IDR_OOBE_UI_OOBE_ELEMENT_HTML);
+ source->AddResourcePath("oobe-element.js", IDR_OOBE_UI_OOBE_ELEMENT_JS);
+}
+
+} // namespace
+
+OobeMdUI::OobeMdUI(content::WebUI* web_ui, const std::string& host)
+ : WebUIController(web_ui) {
+ content::WebUIDataSource* source = content::WebUIDataSource::Create(host);
+ SetUpDataSource(source);
+
+ view_.reset(new gen::OobeWebUIView(web_ui));
+ view_->Init();
+ view_->SetUpDataSource(source);
+
+ content::WebUIDataSource::Add(web_ui->GetWebContents()->GetBrowserContext(),
+ source);
+}
+
+OobeMdUI::~OobeMdUI() {
+}
« ui/oobe/OWNERS ('K') | « ui/oobe/oobe_ui.h ('k') | ui/oobe/oobe_ui.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698