| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/signin/user_manager_screen_handler.h" | 5 #include "chrome/browser/ui/webui/signin/user_manager_screen_handler.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 IDS_USER_MANAGER_TUTORIAL_SLIDE_OUTRO_ADD_USER)); | 855 IDS_USER_MANAGER_TUTORIAL_SLIDE_OUTRO_ADD_USER)); |
| 856 | 856 |
| 857 // Strings needed for the user_pod_template public account div, but not ever | 857 // Strings needed for the user_pod_template public account div, but not ever |
| 858 // actually displayed for desktop users. | 858 // actually displayed for desktop users. |
| 859 localized_strings->SetString("publicAccountReminder", base::string16()); | 859 localized_strings->SetString("publicAccountReminder", base::string16()); |
| 860 localized_strings->SetString("publicSessionLanguageAndInput", | 860 localized_strings->SetString("publicSessionLanguageAndInput", |
| 861 base::string16()); | 861 base::string16()); |
| 862 localized_strings->SetString("publicAccountEnter", base::string16()); | 862 localized_strings->SetString("publicAccountEnter", base::string16()); |
| 863 localized_strings->SetString("publicAccountEnterAccessibleName", | 863 localized_strings->SetString("publicAccountEnterAccessibleName", |
| 864 base::string16()); | 864 base::string16()); |
| 865 localized_strings->SetString("publicAccountMonitoringWarning", |
| 866 base::string16()); |
| 867 localized_strings->SetString("publicAccountLearnMore", base::string16()); |
| 868 localized_strings->SetString("publicAccountMonitoringInfo", base::string16()); |
| 869 localized_strings->SetString("publicAccountMonitoringInfoItem1", |
| 870 base::string16()); |
| 871 localized_strings->SetString("publicAccountMonitoringInfoItem2", |
| 872 base::string16()); |
| 873 localized_strings->SetString("publicAccountMonitoringInfoItem3", |
| 874 base::string16()); |
| 875 localized_strings->SetString("publicAccountMonitoringInfoItem4", |
| 876 base::string16()); |
| 865 localized_strings->SetString("publicSessionSelectLanguage", base::string16()); | 877 localized_strings->SetString("publicSessionSelectLanguage", base::string16()); |
| 866 localized_strings->SetString("publicSessionSelectKeyboard", base::string16()); | 878 localized_strings->SetString("publicSessionSelectKeyboard", base::string16()); |
| 867 localized_strings->SetString("signinBannerText", base::string16()); | 879 localized_strings->SetString("signinBannerText", base::string16()); |
| 868 localized_strings->SetString("launchAppButton", base::string16()); | 880 localized_strings->SetString("launchAppButton", base::string16()); |
| 869 localized_strings->SetString("multiProfilesRestrictedPolicyTitle", | 881 localized_strings->SetString("multiProfilesRestrictedPolicyTitle", |
| 870 base::string16()); | 882 base::string16()); |
| 871 localized_strings->SetString("multiProfilesNotAllowedPolicyMsg", | 883 localized_strings->SetString("multiProfilesNotAllowedPolicyMsg", |
| 872 base::string16()); | 884 base::string16()); |
| 873 localized_strings->SetString("multiProfilesPrimaryOnlyPolicyMsg", | 885 localized_strings->SetString("multiProfilesPrimaryOnlyPolicyMsg", |
| 874 base::string16()); | 886 base::string16()); |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1029 Profile* profile, Profile::CreateStatus profile_create_status) { | 1041 Profile* profile, Profile::CreateStatus profile_create_status) { |
| 1030 Browser* browser = chrome::FindAnyBrowser(profile, false); | 1042 Browser* browser = chrome::FindAnyBrowser(profile, false); |
| 1031 if (browser && browser->window()) { | 1043 if (browser && browser->window()) { |
| 1032 OnBrowserWindowReady(browser); | 1044 OnBrowserWindowReady(browser); |
| 1033 } else { | 1045 } else { |
| 1034 registrar_.Add(this, | 1046 registrar_.Add(this, |
| 1035 chrome::NOTIFICATION_BROWSER_WINDOW_READY, | 1047 chrome::NOTIFICATION_BROWSER_WINDOW_READY, |
| 1036 content::NotificationService::AllSources()); | 1048 content::NotificationService::AllSources()); |
| 1037 } | 1049 } |
| 1038 } | 1050 } |
| OLD | NEW |