| 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/core_oobe_handler.h" | 5 #include "chrome/browser/ui/webui/chromeos/login/core_oobe_handler.h" |
| 6 | 6 |
| 7 #include <type_traits> | 7 #include <type_traits> |
| 8 | 8 |
| 9 #include "ash/common/accessibility_types.h" | 9 #include "ash/common/accessibility_types.h" |
| 10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "chrome/browser/ui/ash/ash_util.h" | 26 #include "chrome/browser/ui/ash/ash_util.h" |
| 27 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" | 27 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" |
| 28 #include "chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h" | 28 #include "chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h" |
| 29 #include "chrome/common/channel_info.h" | 29 #include "chrome/common/channel_info.h" |
| 30 #include "chrome/common/chrome_constants.h" | 30 #include "chrome/common/chrome_constants.h" |
| 31 #include "chrome/grit/chromium_strings.h" | 31 #include "chrome/grit/chromium_strings.h" |
| 32 #include "chrome/grit/generated_resources.h" | 32 #include "chrome/grit/generated_resources.h" |
| 33 #include "chromeos/chromeos_constants.h" | 33 #include "chromeos/chromeos_constants.h" |
| 34 #include "components/login/base_screen_handler_utils.h" | 34 #include "components/login/base_screen_handler_utils.h" |
| 35 #include "components/login/localized_values_builder.h" | 35 #include "components/login/localized_values_builder.h" |
| 36 #include "components/strings/grit/components_strings.h" |
| 36 #include "components/version_info/version_info.h" | 37 #include "components/version_info/version_info.h" |
| 37 #include "google_apis/google_api_keys.h" | 38 #include "google_apis/google_api_keys.h" |
| 38 #include "grit/components_strings.h" | |
| 39 #include "ui/aura/window_tree_host.h" | 39 #include "ui/aura/window_tree_host.h" |
| 40 #include "ui/display/display.h" | 40 #include "ui/display/display.h" |
| 41 #include "ui/display/screen.h" | 41 #include "ui/display/screen.h" |
| 42 #include "ui/gfx/geometry/size.h" | 42 #include "ui/gfx/geometry/size.h" |
| 43 #include "ui/keyboard/keyboard_controller.h" | 43 #include "ui/keyboard/keyboard_controller.h" |
| 44 | 44 |
| 45 namespace { | 45 namespace { |
| 46 | 46 |
| 47 const char kJsScreenPath[] = "cr.ui.Oobe"; | 47 const char kJsScreenPath[] = "cr.ui.Oobe"; |
| 48 | 48 |
| (...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 | 490 |
| 491 void CoreOobeHandler::InitDemoModeDetection() { | 491 void CoreOobeHandler::InitDemoModeDetection() { |
| 492 demo_mode_detector_.InitDetection(); | 492 demo_mode_detector_.InitDetection(); |
| 493 } | 493 } |
| 494 | 494 |
| 495 void CoreOobeHandler::StopDemoModeDetection() { | 495 void CoreOobeHandler::StopDemoModeDetection() { |
| 496 demo_mode_detector_.StopDetection(); | 496 demo_mode_detector_.StopDetection(); |
| 497 } | 497 } |
| 498 | 498 |
| 499 } // namespace chromeos | 499 } // namespace chromeos |
| OLD | NEW |