Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: chrome/browser/ui/webui/settings/md_settings_localized_strings_provider.cc

Issue 2693373002: [MD Settings] Add title to show/hide password button. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/settings/md_settings_localized_strings_provide r.h" 5 #include "chrome/browser/ui/webui/settings/md_settings_localized_strings_provide r.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/i18n/number_formatting.h" 10 #include "base/i18n/number_formatting.h"
(...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 IDS_SETTINGS_PASSWORDS_AUTOSIGNIN_CHECKBOX_LABEL}, 1057 IDS_SETTINGS_PASSWORDS_AUTOSIGNIN_CHECKBOX_LABEL},
1058 {"passwordsAutosigninDescription", 1058 {"passwordsAutosigninDescription",
1059 IDS_SETTINGS_PASSWORDS_AUTOSIGNIN_CHECKBOX_DESC}, 1059 IDS_SETTINGS_PASSWORDS_AUTOSIGNIN_CHECKBOX_DESC},
1060 {"passwordsDetail", IDS_SETTINGS_PASSWORDS_DETAIL}, 1060 {"passwordsDetail", IDS_SETTINGS_PASSWORDS_DETAIL},
1061 {"savedPasswordsHeading", IDS_SETTINGS_PASSWORDS_SAVED_HEADING}, 1061 {"savedPasswordsHeading", IDS_SETTINGS_PASSWORDS_SAVED_HEADING},
1062 {"passwordExceptionsHeading", IDS_SETTINGS_PASSWORDS_EXCEPTIONS_HEADING}, 1062 {"passwordExceptionsHeading", IDS_SETTINGS_PASSWORDS_EXCEPTIONS_HEADING},
1063 {"deletePasswordException", IDS_SETTINGS_PASSWORDS_DELETE_EXCEPTION}, 1063 {"deletePasswordException", IDS_SETTINGS_PASSWORDS_DELETE_EXCEPTION},
1064 {"passwordsDone", IDS_SETTINGS_PASSWORD_DONE}, 1064 {"passwordsDone", IDS_SETTINGS_PASSWORD_DONE},
1065 {"removePassword", IDS_SETTINGS_PASSWORD_REMOVE}, 1065 {"removePassword", IDS_SETTINGS_PASSWORD_REMOVE},
1066 {"searchPasswords", IDS_SETTINGS_PASSWORD_SEARCH}, 1066 {"searchPasswords", IDS_SETTINGS_PASSWORD_SEARCH},
1067 {"showPassword", IDS_SETTINGS_PASSWORD_SHOW},
1068 {"hidePassword", IDS_SETTINGS_PASSWORD_HIDE},
1067 {"passwordDetailsTitle", IDS_SETTINGS_PASSWORDS_VIEW_DETAILS_TITLE}, 1069 {"passwordDetailsTitle", IDS_SETTINGS_PASSWORDS_VIEW_DETAILS_TITLE},
1068 {"passwordViewDetails", IDS_SETTINGS_PASSWORD_VIEW_DETAILS}, 1070 {"passwordViewDetails", IDS_SETTINGS_PASSWORD_VIEW_DETAILS},
1069 {"editPasswordWebsiteLabel", IDS_SETTINGS_PASSWORDS_WEBSITE}, 1071 {"editPasswordWebsiteLabel", IDS_SETTINGS_PASSWORDS_WEBSITE},
1070 {"editPasswordUsernameLabel", IDS_SETTINGS_PASSWORDS_USERNAME}, 1072 {"editPasswordUsernameLabel", IDS_SETTINGS_PASSWORDS_USERNAME},
1071 {"editPasswordPasswordLabel", IDS_SETTINGS_PASSWORDS_PASSWORD}, 1073 {"editPasswordPasswordLabel", IDS_SETTINGS_PASSWORDS_PASSWORD},
1072 {"noAddressesFound", IDS_SETTINGS_ADDRESS_NONE}, 1074 {"noAddressesFound", IDS_SETTINGS_ADDRESS_NONE},
1073 {"noCreditCardsFound", IDS_SETTINGS_CREDIT_CARD_NONE}, 1075 {"noCreditCardsFound", IDS_SETTINGS_CREDIT_CARD_NONE},
1074 {"noPasswordsFound", IDS_SETTINGS_PASSWORDS_NONE}, 1076 {"noPasswordsFound", IDS_SETTINGS_PASSWORDS_NONE},
1075 {"noExceptionsFound", IDS_SETTINGS_PASSWORDS_EXCEPTIONS_NONE}, 1077 {"noExceptionsFound", IDS_SETTINGS_PASSWORDS_EXCEPTIONS_NONE},
1076 }; 1078 };
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
1927 1929
1928 #if defined(OS_CHROMEOS) 1930 #if defined(OS_CHROMEOS)
1929 chromeos::network_element::AddLocalizedStrings(html_source); 1931 chromeos::network_element::AddLocalizedStrings(html_source);
1930 #endif 1932 #endif
1931 policy_indicator::AddLocalizedStrings(html_source); 1933 policy_indicator::AddLocalizedStrings(html_source);
1932 1934
1933 html_source->SetJsonPath(kLocalizedStringsFile); 1935 html_source->SetJsonPath(kLocalizedStringsFile);
1934 } 1936 }
1935 1937
1936 } // namespace settings 1938 } // namespace settings
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698