OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/dom_ui/options/advanced_options_handler.h" | 5 #include "chrome/browser/dom_ui/options/advanced_options_handler.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "app/l10n_util.h" | 9 #include "app/l10n_util.h" |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 l10n_util::GetStringUTF16( | 180 l10n_util::GetStringUTF16( |
181 IDS_OPTIONS_CLOUD_PRINT_PROXY_ENABLED_MANAGE_BUTTON)); | 181 IDS_OPTIONS_CLOUD_PRINT_PROXY_ENABLED_MANAGE_BUTTON)); |
182 localized_strings->SetString("cloudPrintProxyEnablingButton", | 182 localized_strings->SetString("cloudPrintProxyEnablingButton", |
183 l10n_util::GetStringUTF16(IDS_OPTIONS_CLOUD_PRINT_PROXY_ENABLING_BUTTON)); | 183 l10n_util::GetStringUTF16(IDS_OPTIONS_CLOUD_PRINT_PROXY_ENABLING_BUTTON)); |
184 #endif | 184 #endif |
185 #if defined(ENABLE_REMOTING) | 185 #if defined(ENABLE_REMOTING) |
186 localized_strings->SetString("advancedSectionTitleRemoting", | 186 localized_strings->SetString("advancedSectionTitleRemoting", |
187 l10n_util::GetStringUTF16(IDS_OPTIONS_ADVANCED_SECTION_TITLE_REMOTING)); | 187 l10n_util::GetStringUTF16(IDS_OPTIONS_ADVANCED_SECTION_TITLE_REMOTING)); |
188 localized_strings->SetString("remotingSetupButton", | 188 localized_strings->SetString("remotingSetupButton", |
189 l10n_util::GetStringUTF16(IDS_OPTIONS_REMOTING_SETUP_BUTTON)); | 189 l10n_util::GetStringUTF16(IDS_OPTIONS_REMOTING_SETUP_BUTTON)); |
| 190 localized_strings->SetString("remotingStopButton", |
| 191 l10n_util::GetStringUTF16(IDS_OPTIONS_REMOTING_STOP_BUTTON)); |
190 #endif | 192 #endif |
191 localized_strings->SetString("enableLogging", | 193 localized_strings->SetString("enableLogging", |
192 l10n_util::GetStringUTF16(IDS_OPTIONS_ENABLE_LOGGING)); | 194 l10n_util::GetStringUTF16(IDS_OPTIONS_ENABLE_LOGGING)); |
193 localized_strings->SetString("improveBrowsingExperience", | 195 localized_strings->SetString("improveBrowsingExperience", |
194 l10n_util::GetStringUTF16(IDS_OPTIONS_IMPROVE_BROWSING_EXPERIENCE)); | 196 l10n_util::GetStringUTF16(IDS_OPTIONS_IMPROVE_BROWSING_EXPERIENCE)); |
195 localized_strings->SetString("disableWebServices", | 197 localized_strings->SetString("disableWebServices", |
196 l10n_util::GetStringUTF16(IDS_OPTIONS_DISABLE_WEB_SERVICES)); | 198 l10n_util::GetStringUTF16(IDS_OPTIONS_DISABLE_WEB_SERVICES)); |
197 } | 199 } |
198 | 200 |
199 void AdvancedOptionsHandler::Initialize() { | 201 void AdvancedOptionsHandler::Initialize() { |
(...skipping 13 matching lines...) Expand all Loading... |
213 SetupCloudPrintProxySection(); | 215 SetupCloudPrintProxySection(); |
214 RefreshCloudPrintStatusFromService(); | 216 RefreshCloudPrintStatusFromService(); |
215 } else { | 217 } else { |
216 RemoveCloudPrintProxySection(); | 218 RemoveCloudPrintProxySection(); |
217 } | 219 } |
218 #endif | 220 #endif |
219 #if defined(ENABLE_REMOTING) | 221 #if defined(ENABLE_REMOTING) |
220 if (!CommandLine::ForCurrentProcess()->HasSwitch( | 222 if (!CommandLine::ForCurrentProcess()->HasSwitch( |
221 switches::kEnableRemoting)) { | 223 switches::kEnableRemoting)) { |
222 RemoveRemotingSection(); | 224 RemoveRemotingSection(); |
| 225 } else { |
| 226 remoting_options_handler_.Init(dom_ui_); |
223 } | 227 } |
224 #endif | 228 #endif |
225 | 229 |
226 banner_handler_.reset( | 230 banner_handler_.reset( |
227 new OptionsManagedBannerHandler(dom_ui_, | 231 new OptionsManagedBannerHandler(dom_ui_, |
228 ASCIIToUTF16("AdvancedOptions"), | 232 ASCIIToUTF16("AdvancedOptions"), |
229 OPTIONS_PAGE_ADVANCED)); | 233 OPTIONS_PAGE_ADVANCED)); |
230 } | 234 } |
231 | 235 |
232 DOMMessageHandler* AdvancedOptionsHandler::Attach(DOMUI* dom_ui) { | 236 DOMMessageHandler* AdvancedOptionsHandler::Attach(DOMUI* dom_ui) { |
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
636 FundamentalValue useSSL3Value(useSSL3Setting); | 640 FundamentalValue useSSL3Value(useSSL3Setting); |
637 dom_ui_->CallJavascriptFunction( | 641 dom_ui_->CallJavascriptFunction( |
638 L"options.AdvancedOptions.SetUseSSL3CheckboxState", | 642 L"options.AdvancedOptions.SetUseSSL3CheckboxState", |
639 useSSL3Value, disabledValue); | 643 useSSL3Value, disabledValue); |
640 FundamentalValue useTLS1Value(useTLS1Setting); | 644 FundamentalValue useTLS1Value(useTLS1Setting); |
641 dom_ui_->CallJavascriptFunction( | 645 dom_ui_->CallJavascriptFunction( |
642 L"options.AdvancedOptions.SetUseTLS1CheckboxState", | 646 L"options.AdvancedOptions.SetUseTLS1CheckboxState", |
643 useTLS1Value, disabledValue); | 647 useTLS1Value, disabledValue); |
644 } | 648 } |
645 #endif | 649 #endif |
OLD | NEW |