| 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/network_screen_handler.h" | 5 #include "chrome/browser/ui/webui/chromeos/login/network_screen_handler.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| 11 #include "base/bind.h" | 11 #include "base/bind.h" |
| 12 #include "base/bind_helpers.h" | 12 #include "base/bind_helpers.h" |
| 13 #include "base/command_line.h" | 13 #include "base/command_line.h" |
| 14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 15 #include "base/strings/utf_string_conversions.h" | 15 #include "base/strings/utf_string_conversions.h" |
| 16 #include "base/task_runner_util.h" | 16 #include "base/task_runner_util.h" |
| 17 #include "base/threading/worker_pool.h" | |
| 18 #include "base/values.h" | 17 #include "base/values.h" |
| 19 #include "chrome/browser/browser_process.h" | 18 #include "chrome/browser/browser_process.h" |
| 20 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" | 19 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" |
| 21 #include "chrome/browser/chromeos/customization/customization_document.h" | 20 #include "chrome/browser/chromeos/customization/customization_document.h" |
| 22 #include "chrome/browser/chromeos/idle_detector.h" | 21 #include "chrome/browser/chromeos/idle_detector.h" |
| 23 #include "chrome/browser/chromeos/login/screens/core_oobe_view.h" | 22 #include "chrome/browser/chromeos/login/screens/core_oobe_view.h" |
| 24 #include "chrome/browser/chromeos/login/screens/network_screen.h" | 23 #include "chrome/browser/chromeos/login/screens/network_screen.h" |
| 25 #include "chrome/browser/chromeos/login/ui/input_events_blocker.h" | 24 #include "chrome/browser/chromeos/login/ui/input_events_blocker.h" |
| 26 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h" | 25 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h" |
| 27 #include "chrome/browser/chromeos/policy/device_cloud_policy_manager_chromeos.h" | 26 #include "chrome/browser/chromeos/policy/device_cloud_policy_manager_chromeos.h" |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 timezone_option->SetString("value", timezone_id); | 287 timezone_option->SetString("value", timezone_id); |
| 289 timezone_option->SetString("title", timezone_name); | 288 timezone_option->SetString("title", timezone_name); |
| 290 timezone_option->SetBoolean("selected", timezone_id == current_timezone_id); | 289 timezone_option->SetBoolean("selected", timezone_id == current_timezone_id); |
| 291 timezone_list->Append(std::move(timezone_option)); | 290 timezone_list->Append(std::move(timezone_option)); |
| 292 } | 291 } |
| 293 | 292 |
| 294 return timezone_list; | 293 return timezone_list; |
| 295 } | 294 } |
| 296 | 295 |
| 297 } // namespace chromeos | 296 } // namespace chromeos |
| OLD | NEW |