OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/md_user_manager_ui.h" | 5 #include "chrome/browser/ui/webui/signin/md_user_manager_ui.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/values.h" | 9 #include "base/values.h" |
10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 source->AddResourcePath("control_bar.css", IDR_MD_CONTROL_BAR_CSS); | 55 source->AddResourcePath("control_bar.css", IDR_MD_CONTROL_BAR_CSS); |
56 source->AddResourcePath("control_bar.html", IDR_MD_CONTROL_BAR_HTML); | 56 source->AddResourcePath("control_bar.html", IDR_MD_CONTROL_BAR_HTML); |
57 source->AddResourcePath("control_bar.js", IDR_MD_CONTROL_BAR_JS); | 57 source->AddResourcePath("control_bar.js", IDR_MD_CONTROL_BAR_JS); |
58 source->AddResourcePath("create_profile.css", IDR_MD_CREATE_PROFILE_CSS); | 58 source->AddResourcePath("create_profile.css", IDR_MD_CREATE_PROFILE_CSS); |
59 source->AddResourcePath("create_profile.html", IDR_MD_CREATE_PROFILE_HTML); | 59 source->AddResourcePath("create_profile.html", IDR_MD_CREATE_PROFILE_HTML); |
60 source->AddResourcePath("create_profile.js", IDR_MD_CREATE_PROFILE_JS); | 60 source->AddResourcePath("create_profile.js", IDR_MD_CREATE_PROFILE_JS); |
61 source->AddResourcePath("profile_api.html", IDR_MD_PROFILE_API_HTML); | 61 source->AddResourcePath("profile_api.html", IDR_MD_PROFILE_API_HTML); |
62 source->AddResourcePath("profile_api.js", IDR_MD_PROFILE_API_JS); | 62 source->AddResourcePath("profile_api.js", IDR_MD_PROFILE_API_JS); |
63 source->AddResourcePath("strings.html", IDR_MD_USER_MANAGER_STRINGS_HTML); | 63 source->AddResourcePath("strings.html", IDR_MD_USER_MANAGER_STRINGS_HTML); |
| 64 source->AddResourcePath("supervised_user_learn_more.css", |
| 65 IDR_MD_SUPERVISED_USER_LEARN_MORE_CSS); |
| 66 source->AddResourcePath("supervised_user_learn_more.html", |
| 67 IDR_MD_SUPERVISED_USER_LEARN_MORE_HTML); |
| 68 source->AddResourcePath("supervised_user_learn_more.js", |
| 69 IDR_MD_SUPERVISED_USER_LEARN_MORE_JS); |
64 source->AddResourcePath("user_manager.css", IDR_MD_USER_MANAGER_CSS); | 70 source->AddResourcePath("user_manager.css", IDR_MD_USER_MANAGER_CSS); |
65 source->AddResourcePath("user_manager.js", IDR_MD_USER_MANAGER_JS); | 71 source->AddResourcePath("user_manager.js", IDR_MD_USER_MANAGER_JS); |
66 source->AddResourcePath("user_manager_pages.css", | 72 source->AddResourcePath("user_manager_pages.css", |
67 IDR_MD_USER_MANAGER_PAGES_CSS); | 73 IDR_MD_USER_MANAGER_PAGES_CSS); |
68 source->AddResourcePath("user_manager_pages.html", | 74 source->AddResourcePath("user_manager_pages.html", |
69 IDR_MD_USER_MANAGER_PAGES_HTML); | 75 IDR_MD_USER_MANAGER_PAGES_HTML); |
70 source->AddResourcePath("user_manager_pages.js", | 76 source->AddResourcePath("user_manager_pages.js", |
71 IDR_MD_USER_MANAGER_PAGES_JS); | 77 IDR_MD_USER_MANAGER_PAGES_JS); |
| 78 source->AddResourcePath("user_manager_tutorial.css", |
| 79 IDR_MD_USER_MANAGER_TUTORIAL_CSS); |
| 80 source->AddResourcePath("user_manager_tutorial.html", |
| 81 IDR_MD_USER_MANAGER_TUTORIAL_HTML); |
| 82 source->AddResourcePath("user_manager_tutorial.js", |
| 83 IDR_MD_USER_MANAGER_TUTORIAL_JS); |
72 | 84 |
73 source->SetDefaultResource(IDR_MD_USER_MANAGER_HTML); | 85 source->SetDefaultResource(IDR_MD_USER_MANAGER_HTML); |
74 | 86 |
75 return source; | 87 return source; |
76 } | 88 } |
77 | 89 |
78 void MDUserManagerUI::GetLocalizedStrings( | 90 void MDUserManagerUI::GetLocalizedStrings( |
79 base::DictionaryValue* localized_strings) { | 91 base::DictionaryValue* localized_strings) { |
80 user_manager_screen_handler_->GetLocalizedValues(localized_strings); | 92 user_manager_screen_handler_->GetLocalizedValues(localized_strings); |
81 signin_create_profile_handler_->GetLocalizedValues(localized_strings); | 93 signin_create_profile_handler_->GetLocalizedValues(localized_strings); |
82 const std::string& app_locale = g_browser_process->GetApplicationLocale(); | 94 const std::string& app_locale = g_browser_process->GetApplicationLocale(); |
83 webui::SetLoadTimeDataDefaults(app_locale, localized_strings); | 95 webui::SetLoadTimeDataDefaults(app_locale, localized_strings); |
84 | 96 |
85 #if defined(GOOGLE_CHROME_BUILD) | 97 #if defined(GOOGLE_CHROME_BUILD) |
86 localized_strings->SetString("buildType", "chrome"); | 98 localized_strings->SetString("buildType", "chrome"); |
87 #else | 99 #else |
88 localized_strings->SetString("buildType", "chromium"); | 100 localized_strings->SetString("buildType", "chromium"); |
89 #endif | 101 #endif |
90 } | 102 } |
OLD | NEW |