Index: chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc |
diff --git a/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc b/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc |
index 6b8a0bffce40c52e7a0f89b5fb700d47df128955..55d66cd645de8cc103fd8879b459cc7d720f00a6 100644 |
--- a/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc |
+++ b/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc |
@@ -54,7 +54,6 @@ namespace { |
// Keys for the initial "localized" dictionary values. |
const char kLoggedInAsOwnerKey[] = "loggedInAsOwner"; |
-const char kShowCarrierSelectKey[] = "showCarrierSelect"; |
// Functions we call in JavaScript. |
const char kSetVPNProvidersFunction[] = "options.VPNProviders.setProviders"; |
@@ -140,9 +139,6 @@ void InternetOptionsHandler::GetLocalizedValues( |
bool logged_in_as_owner = LoginState::Get()->GetLoggedInUserType() == |
LoginState::LOGGED_IN_USER_OWNER; |
localized_strings->SetBoolean(kLoggedInAsOwnerKey, logged_in_as_owner); |
- // TODO(anujsharma): Remove kShowCarrierSelectKey, as it is not |
- // required anymore. |
- localized_strings->SetBoolean(kShowCarrierSelectKey, false); |
} |
void InternetOptionsHandler::InitializePage() { |