OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "content/browser/webui/web_ui.h" |
| 10 |
| 11 namespace chromeos { |
| 12 |
| 13 // A custom WebUI that defines datasource for out-of-box-experience (OOBE) UI: |
| 14 // - welcome screen (setup language/keyboard/network). |
| 15 // - eula screen (CrOS (+ OEM) EULA content/TPM password/crash reporting). |
| 16 // - update screen. |
| 17 class OobeUI : public WebUI { |
| 18 public: |
| 19 explicit OobeUI(TabContents* contents); |
| 20 |
| 21 private: |
| 22 DISALLOW_COPY_AND_ASSIGN(OobeUI); |
| 23 }; |
| 24 |
| 25 } // namespace chromeos |
| 26 |
| 27 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
OLD | NEW |