| Index: chrome/browser/dom_ui/options/advanced_options_handler.cc
|
| diff --git a/chrome/browser/dom_ui/options/advanced_options_handler.cc b/chrome/browser/dom_ui/options/advanced_options_handler.cc
|
| index 9d66ee9e76a090836c781cc1505a8ebee29def35..1b37c88664b10e42075dec92029c4df8f2b554d9 100644
|
| --- a/chrome/browser/dom_ui/options/advanced_options_handler.cc
|
| +++ b/chrome/browser/dom_ui/options/advanced_options_handler.cc
|
| @@ -187,6 +187,8 @@ void AdvancedOptionsHandler::GetLocalizedValues(
|
| l10n_util::GetStringUTF16(IDS_OPTIONS_ADVANCED_SECTION_TITLE_REMOTING));
|
| localized_strings->SetString("remotingSetupButton",
|
| l10n_util::GetStringUTF16(IDS_OPTIONS_REMOTING_SETUP_BUTTON));
|
| + localized_strings->SetString("remotingStopButton",
|
| + l10n_util::GetStringUTF16(IDS_OPTIONS_REMOTING_STOP_BUTTON));
|
| #endif
|
| localized_strings->SetString("enableLogging",
|
| l10n_util::GetStringUTF16(IDS_OPTIONS_ENABLE_LOGGING));
|
| @@ -220,6 +222,8 @@ void AdvancedOptionsHandler::Initialize() {
|
| if (!CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kEnableRemoting)) {
|
| RemoveRemotingSection();
|
| + } else {
|
| + remoting_options_handler_.Init(dom_ui_);
|
| }
|
| #endif
|
|
|
|
|