| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/oobe_ui.h" | 5 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "ash/common/wm/screen_dimmer.h" | 11 #include "ash/wm/screen_dimmer.h" |
| 12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/memory/ptr_util.h" | 15 #include "base/memory/ptr_util.h" |
| 16 #include "base/strings/stringprintf.h" | 16 #include "base/strings/stringprintf.h" |
| 17 #include "base/values.h" | 17 #include "base/values.h" |
| 18 #include "chrome/browser/browser_process.h" | 18 #include "chrome/browser/browser_process.h" |
| 19 #include "chrome/browser/browser_process_platform_part.h" | 19 #include "chrome/browser/browser_process_platform_part.h" |
| 20 #include "chrome/browser/chromeos/login/enrollment/auto_enrollment_check_screen_
view.h" | 20 #include "chrome/browser/chromeos/login/enrollment/auto_enrollment_check_screen_
view.h" |
| 21 #include "chrome/browser/chromeos/login/enrollment/enrollment_screen_view.h" | 21 #include "chrome/browser/chromeos/login/enrollment/enrollment_screen_view.h" |
| (...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 g_browser_process->local_state()->GetBoolean(prefs::kOobeMdMode)) { | 587 g_browser_process->local_state()->GetBoolean(prefs::kOobeMdMode)) { |
| 588 return; | 588 return; |
| 589 } | 589 } |
| 590 | 590 |
| 591 base::DictionaryValue localized_strings; | 591 base::DictionaryValue localized_strings; |
| 592 GetLocalizedStrings(&localized_strings); | 592 GetLocalizedStrings(&localized_strings); |
| 593 static_cast<CoreOobeView*>(core_handler_)->ReloadContent(localized_strings); | 593 static_cast<CoreOobeView*>(core_handler_)->ReloadContent(localized_strings); |
| 594 } | 594 } |
| 595 | 595 |
| 596 } // namespace chromeos | 596 } // namespace chromeos |
| OLD | NEW |