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

Side by Side Diff: chrome/browser/ui/webui/signin/md_user_manager_ui.cc

Issue 1725563003: MD user manager (learn more page, user manager tutorial) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: UI tweaks and bug fix 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 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_browser_proxy.html", 61 source->AddResourcePath("profile_browser_proxy.html",
62 IDR_MD_PROFILE_BROWSER_PROXY_HTML); 62 IDR_MD_PROFILE_BROWSER_PROXY_HTML);
63 source->AddResourcePath("profile_browser_proxy.js", 63 source->AddResourcePath("profile_browser_proxy.js",
64 IDR_MD_PROFILE_BROWSER_PROXY_JS); 64 IDR_MD_PROFILE_BROWSER_PROXY_JS);
65 source->AddResourcePath("strings.html", IDR_MD_USER_MANAGER_STRINGS_HTML); 65 source->AddResourcePath("strings.html", IDR_MD_USER_MANAGER_STRINGS_HTML);
66 source->AddResourcePath("supervised_user_learn_more.css",
67 IDR_MD_SUPERVISED_USER_LEARN_MORE_CSS);
68 source->AddResourcePath("supervised_user_learn_more.html",
69 IDR_MD_SUPERVISED_USER_LEARN_MORE_HTML);
70 source->AddResourcePath("supervised_user_learn_more.js",
71 IDR_MD_SUPERVISED_USER_LEARN_MORE_JS);
66 source->AddResourcePath("user_manager.css", IDR_MD_USER_MANAGER_CSS); 72 source->AddResourcePath("user_manager.css", IDR_MD_USER_MANAGER_CSS);
67 source->AddResourcePath("user_manager.js", IDR_MD_USER_MANAGER_JS); 73 source->AddResourcePath("user_manager.js", IDR_MD_USER_MANAGER_JS);
68 source->AddResourcePath("user_manager_pages.css", 74 source->AddResourcePath("user_manager_pages.css",
69 IDR_MD_USER_MANAGER_PAGES_CSS); 75 IDR_MD_USER_MANAGER_PAGES_CSS);
70 source->AddResourcePath("user_manager_pages.html", 76 source->AddResourcePath("user_manager_pages.html",
71 IDR_MD_USER_MANAGER_PAGES_HTML); 77 IDR_MD_USER_MANAGER_PAGES_HTML);
72 source->AddResourcePath("user_manager_pages.js", 78 source->AddResourcePath("user_manager_pages.js",
73 IDR_MD_USER_MANAGER_PAGES_JS); 79 IDR_MD_USER_MANAGER_PAGES_JS);
80 source->AddResourcePath("user_manager_tutorial.css",
81 IDR_MD_USER_MANAGER_TUTORIAL_CSS);
82 source->AddResourcePath("user_manager_tutorial.html",
83 IDR_MD_USER_MANAGER_TUTORIAL_HTML);
84 source->AddResourcePath("user_manager_tutorial.js",
85 IDR_MD_USER_MANAGER_TUTORIAL_JS);
74 86
75 source->SetDefaultResource(IDR_MD_USER_MANAGER_HTML); 87 source->SetDefaultResource(IDR_MD_USER_MANAGER_HTML);
76 88
77 return source; 89 return source;
78 } 90 }
79 91
80 void MDUserManagerUI::GetLocalizedStrings( 92 void MDUserManagerUI::GetLocalizedStrings(
81 base::DictionaryValue* localized_strings) { 93 base::DictionaryValue* localized_strings) {
82 user_manager_screen_handler_->GetLocalizedValues(localized_strings); 94 user_manager_screen_handler_->GetLocalizedValues(localized_strings);
83 signin_create_profile_handler_->GetLocalizedValues(localized_strings); 95 signin_create_profile_handler_->GetLocalizedValues(localized_strings);
84 const std::string& app_locale = g_browser_process->GetApplicationLocale(); 96 const std::string& app_locale = g_browser_process->GetApplicationLocale();
85 webui::SetLoadTimeDataDefaults(app_locale, localized_strings); 97 webui::SetLoadTimeDataDefaults(app_locale, localized_strings);
86 98
87 #if defined(GOOGLE_CHROME_BUILD) 99 #if defined(GOOGLE_CHROME_BUILD)
88 localized_strings->SetString("buildType", "chrome"); 100 localized_strings->SetString("buildType", "chrome");
89 #else 101 #else
90 localized_strings->SetString("buildType", "chromium"); 102 localized_strings->SetString("buildType", "chromium");
91 #endif 103 #endif
92 } 104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698