Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / ui / webui / chromeos / sim_unlock_ui.h
blob7ad9b037038ea176d9d5c3eb42de01710b94165f
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.
5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_SIM_UNLOCK_UI_H_
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_SIM_UNLOCK_UI_H_
8 #include "content/public/browser/web_ui_controller.h"
10 namespace chromeos {
12 // A custom WebUI that defines datasource for SIM unlock dialog that is used
13 // in Chrome OS for specific tasks:
14 // - Unlock SIM card (enter PIN/PUK codes).
15 // - Display "SIM card is blocked" message when there're no PUK tries left.
16 class SimUnlockUI : public content::WebUIController {
17 public:
18 explicit SimUnlockUI(content::WebUI* web_ui);
20 private:
21 DISALLOW_COPY_AND_ASSIGN(SimUnlockUI);
24 } // namespace chromeos
26 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_SIM_UNLOCK_UI_H_