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

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

Issue 1807703002: MD Settings: Certificate manager, password decryption dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comment. Created 4 years, 9 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/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 {"certificateManagerDeleteServerTitle", 238 {"certificateManagerDeleteServerTitle",
239 IDS_SETTINGS_CERTIFICATE_MANAGER_DELETE_SERVER_TITLE}, 239 IDS_SETTINGS_CERTIFICATE_MANAGER_DELETE_SERVER_TITLE},
240 {"certificateManagerDeleteServerDescription", 240 {"certificateManagerDeleteServerDescription",
241 IDS_SETTINGS_CERTIFICATE_MANAGER_DELETE_SERVER_DESCRIPTION}, 241 IDS_SETTINGS_CERTIFICATE_MANAGER_DELETE_SERVER_DESCRIPTION},
242 {"certificateManagerDeleteCaTitle", 242 {"certificateManagerDeleteCaTitle",
243 IDS_SETTINGS_CERTIFICATE_MANAGER_DELETE_CA_TITLE}, 243 IDS_SETTINGS_CERTIFICATE_MANAGER_DELETE_CA_TITLE},
244 {"certificateManagerDeleteCaDescription", 244 {"certificateManagerDeleteCaDescription",
245 IDS_SETTINGS_CERTIFICATE_MANAGER_DELETE_CA_DESCRIPTION}, 245 IDS_SETTINGS_CERTIFICATE_MANAGER_DELETE_CA_DESCRIPTION},
246 {"certificateManagerDeleteOtherTitle", 246 {"certificateManagerDeleteOtherTitle",
247 IDS_SETTINGS_CERTIFICATE_MANAGER_DELETE_OTHER_TITLE}, 247 IDS_SETTINGS_CERTIFICATE_MANAGER_DELETE_OTHER_TITLE},
248 // Encrypt password dialog 248 // Encrypt/decrypt password dialogs.
249 {"certificateManagerEncryptPasswordTitle", 249 {"certificateManagerEncryptPasswordTitle",
250 IDS_SETTINGS_CERTIFICATE_MANAGER_ENCRYPT_PASSWORD_TITLE}, 250 IDS_SETTINGS_CERTIFICATE_MANAGER_ENCRYPT_PASSWORD_TITLE},
251 {"certificateManagerDecryptPasswordTitle",
252 IDS_SETTINGS_CERTIFICATE_MANAGER_DECRYPT_PASSWORD_TITLE},
251 {"certificateManagerEncryptPasswordDescription", 253 {"certificateManagerEncryptPasswordDescription",
252 IDS_SETTINGS_CERTIFICATE_MANAGER_ENCRYPT_PASSWORD_DESCRIPTION}, 254 IDS_SETTINGS_CERTIFICATE_MANAGER_ENCRYPT_PASSWORD_DESCRIPTION},
253 {"certificateManagerPassword", 255 {"certificateManagerPassword",
254 IDS_SETTINGS_CERTIFICATE_MANAGER_PASSWORD}, 256 IDS_SETTINGS_CERTIFICATE_MANAGER_PASSWORD},
255 {"certificateManagerConfirmPassword", 257 {"certificateManagerConfirmPassword",
256 IDS_SETTINGS_CERTIFICATE_MANAGER_CONFIRM_PASSWORD}, 258 IDS_SETTINGS_CERTIFICATE_MANAGER_CONFIRM_PASSWORD},
257 }; 259 };
258 AddLocalizedStringsBulk(html_source, localized_strings, 260 AddLocalizedStringsBulk(html_source, localized_strings,
259 arraysize(localized_strings)); 261 arraysize(localized_strings));
260 } 262 }
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
891 #endif 893 #endif
892 AddUsersStrings(html_source); 894 AddUsersStrings(html_source);
893 AddWebContentStrings(html_source); 895 AddWebContentStrings(html_source);
894 896
895 policy_indicator::AddLocalizedStrings(html_source); 897 policy_indicator::AddLocalizedStrings(html_source);
896 898
897 html_source->SetJsonPath(kLocalizedStringsFile); 899 html_source->SetJsonPath(kLocalizedStringsFile);
898 } 900 }
899 901
900 } // namespace settings 902 } // namespace settings
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698