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

Unified Diff: ui/oobe/oobe_md_ui.h

Issue 941973003: New OOBE implementation skeleton using WUG toolkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: No explicit, gn format. 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
« no previous file with comments | « ui/oobe/oobe_export.h ('k') | ui/oobe/oobe_md_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/oobe/oobe_md_ui.h
diff --git a/ui/oobe/oobe_md_ui.h b/ui/oobe/oobe_md_ui.h
new file mode 100644
index 0000000000000000000000000000000000000000..7ff3aefb859c2077deaf8c0c83a9b3bfb6be67e1
--- /dev/null
+++ b/ui/oobe/oobe_md_ui.h
@@ -0,0 +1,32 @@
+// 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.
+
+#ifndef UI_OOBE_OOBE_MD_UI_H_
+#define UI_OOBE_OOBE_MD_UI_H_
+
+#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
+#include "content/public/browser/web_ui_controller.h"
+#include "ui/oobe/oobe_export.h"
+
+namespace content {
+class WebUI;
+}
+
+namespace gen {
+class OobeWebUIView;
+}
+
+class OOBE_EXPORT OobeMdUI : public content::WebUIController {
+ public:
+ OobeMdUI(content::WebUI* web_ui, const std::string& host);
+ ~OobeMdUI() override;
+
+ private:
+ scoped_ptr<gen::OobeWebUIView> view_;
+
+ DISALLOW_COPY_AND_ASSIGN(OobeMdUI);
+};
+
+#endif // UI_OOBE_OOBE_MD_UI_H_
« no previous file with comments | « ui/oobe/oobe_export.h ('k') | ui/oobe/oobe_md_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698