| 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 |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 else | 147 else |
| 148 builder->Add("networkScreenGreeting", IDS_WELCOME_SCREEN_GREETING); | 148 builder->Add("networkScreenGreeting", IDS_WELCOME_SCREEN_GREETING); |
| 149 | 149 |
| 150 builder->Add("networkScreenTitle", IDS_WELCOME_SCREEN_TITLE); | 150 builder->Add("networkScreenTitle", IDS_WELCOME_SCREEN_TITLE); |
| 151 builder->Add("networkScreenAccessibleTitle", | 151 builder->Add("networkScreenAccessibleTitle", |
| 152 IDS_NETWORK_SCREEN_ACCESSIBLE_TITLE); | 152 IDS_NETWORK_SCREEN_ACCESSIBLE_TITLE); |
| 153 builder->Add("selectLanguage", IDS_LANGUAGE_SELECTION_SELECT); | 153 builder->Add("selectLanguage", IDS_LANGUAGE_SELECTION_SELECT); |
| 154 builder->Add("selectKeyboard", IDS_KEYBOARD_SELECTION_SELECT); | 154 builder->Add("selectKeyboard", IDS_KEYBOARD_SELECTION_SELECT); |
| 155 builder->Add("selectNetwork", IDS_NETWORK_SELECTION_SELECT); | 155 builder->Add("selectNetwork", IDS_NETWORK_SELECTION_SELECT); |
| 156 builder->Add("selectTimezone", IDS_OPTIONS_SETTINGS_TIMEZONE_DESCRIPTION); | 156 builder->Add("selectTimezone", IDS_OPTIONS_SETTINGS_TIMEZONE_DESCRIPTION); |
| 157 builder->Add("timezoneDropdownLabel", IDS_TIMEZONE_DROPDOWN_LABEL); |
| 157 builder->Add("proxySettings", IDS_OPTIONS_PROXIES_CONFIGURE_BUTTON); | 158 builder->Add("proxySettings", IDS_OPTIONS_PROXIES_CONFIGURE_BUTTON); |
| 158 builder->Add("continueButton", IDS_NETWORK_SELECTION_CONTINUE_BUTTON); | 159 builder->Add("continueButton", IDS_NETWORK_SELECTION_CONTINUE_BUTTON); |
| 159 builder->Add("debuggingFeaturesLink", IDS_NETWORK_ENABLE_DEV_FEATURES_LINK); | 160 builder->Add("debuggingFeaturesLink", IDS_NETWORK_ENABLE_DEV_FEATURES_LINK); |
| 160 | 161 |
| 161 // MD-OOBE | 162 // MD-OOBE |
| 162 builder->Add("oobeOKButtonText", IDS_OOBE_OK_BUTTON_TEXT); | 163 builder->Add("oobeOKButtonText", IDS_OOBE_OK_BUTTON_TEXT); |
| 163 builder->Add("welcomeNextButtonText", IDS_OOBE_WELCOME_NEXT_BUTTON_TEXT); | 164 builder->Add("welcomeNextButtonText", IDS_OOBE_WELCOME_NEXT_BUTTON_TEXT); |
| 164 builder->Add("languageButtonLabel", IDS_LANGUAGE_BUTTON_LABEL); | 165 builder->Add("languageButtonLabel", IDS_LANGUAGE_BUTTON_LABEL); |
| 165 builder->Add("languageSectionTitle", IDS_LANGUAGE_SECTION_TITLE); | 166 builder->Add("languageSectionTitle", IDS_LANGUAGE_SECTION_TITLE); |
| 166 builder->Add("accessibilitySectionTitle", IDS_ACCESSIBILITY_SECTION_TITLE); | 167 builder->Add("accessibilitySectionTitle", IDS_ACCESSIBILITY_SECTION_TITLE); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 timezone_option->SetString("value", timezone_id); | 289 timezone_option->SetString("value", timezone_id); |
| 289 timezone_option->SetString("title", timezone_name); | 290 timezone_option->SetString("title", timezone_name); |
| 290 timezone_option->SetBoolean("selected", timezone_id == current_timezone_id); | 291 timezone_option->SetBoolean("selected", timezone_id == current_timezone_id); |
| 291 timezone_list->Append(std::move(timezone_option)); | 292 timezone_list->Append(std::move(timezone_option)); |
| 292 } | 293 } |
| 293 | 294 |
| 294 return timezone_list.release(); | 295 return timezone_list.release(); |
| 295 } | 296 } |
| 296 | 297 |
| 297 } // namespace chromeos | 298 } // namespace chromeos |
| OLD | NEW |