| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/webui/chromeos/login/device_disabled_screen_handler.
h" | 5 #include "chrome/browser/ui/webui/chromeos/login/device_disabled_screen_handler.
h" |
| 6 | 6 |
| 7 #include "chrome/browser/chromeos/login/oobe_screen.h" |
| 7 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h" | 8 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h" |
| 8 #include "chrome/browser/ui/webui/chromeos/login/oobe_screen.h" | |
| 9 #include "chrome/grit/generated_resources.h" | 9 #include "chrome/grit/generated_resources.h" |
| 10 #include "components/login/localized_values_builder.h" | 10 #include "components/login/localized_values_builder.h" |
| 11 | 11 |
| 12 namespace { | 12 namespace { |
| 13 | 13 |
| 14 const char kJsScreenPath[] = "login.DeviceDisabledScreen"; | 14 const char kJsScreenPath[] = "login.DeviceDisabledScreen"; |
| 15 | 15 |
| 16 } // namespace | 16 } // namespace |
| 17 | 17 |
| 18 namespace chromeos { | 18 namespace chromeos { |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 if (show_on_init_) { | 72 if (show_on_init_) { |
| 73 Show(); | 73 Show(); |
| 74 show_on_init_ = false; | 74 show_on_init_ = false; |
| 75 } | 75 } |
| 76 } | 76 } |
| 77 | 77 |
| 78 void DeviceDisabledScreenHandler::RegisterMessages() { | 78 void DeviceDisabledScreenHandler::RegisterMessages() { |
| 79 } | 79 } |
| 80 | 80 |
| 81 } // namespace chromeos | 81 } // namespace chromeos |
| OLD | NEW |