Chromium Code Reviews| 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..aefde9d4e6d5372b8bfc5ba244d4000a7a3508fa |
| --- /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: |
| + explicit OobeMdUI(content::WebUI* web_ui, const std::string& host); |
|
sadrul
2015/03/05 10:03:25
no explicit
|
| + ~OobeMdUI() override; |
| + |
| + private: |
| + scoped_ptr<gen::OobeWebUIView> view_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(OobeMdUI); |
| +}; |
| + |
| +#endif // UI_OOBE_OOBE_MD_UI_H_ |