// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/webui/signin/user_manager_ui.h" #include "base/values.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/webui/signin/user_manager_screen_handler.h" #include "chrome/browser/ui/webui/theme_source.h" #include "chrome/common/url_constants.h" #include "content/public/browser/web_ui.h" #include "content/public/browser/web_ui_data_source.h" #include "grit/browser_resources.h" #include "ui/base/resource/resource_bundle.h" #include "ui/base/webui/web_ui_util.h" // JS file names. const char kStringsJSPath[] = "strings.js"; const char kUserManagerJSPath[] = "user_manager.js"; UserManagerUI::UserManagerUI(content::WebUI* web_ui) : WebUIController(web_ui) { // The web_ui object takes ownership of the handler, and will // destroy it when it (the WebUI) is destroyed. user_manager_screen_handler_ = new UserManagerScreenHandler(); web_ui->AddMessageHandler(user_manager_screen_handler_); base::DictionaryValue localized_strings; GetLocalizedStrings(&localized_strings); Profile* profile = Profile::FromWebUI(web_ui); // Set up the chrome://user-chooser/ source. content::WebUIDataSource::Add(profile, CreateUIDataSource(localized_strings)); #if defined(ENABLE_THEMES) // Set up the chrome://theme/ source ThemeSource* theme = new ThemeSource(profile); content::URLDataSource::Add(profile, theme); #endif } UserManagerUI::~UserManagerUI() { } content::WebUIDataSource* UserManagerUI::CreateUIDataSource( const base::DictionaryValue& localized_strings) { content::WebUIDataSource* source = content::WebUIDataSource::Create(chrome::kChromeUIUserManagerHost); source->AddLocalizedStrings(localized_strings); source->SetJsonPath(kStringsJSPath); source->SetDefaultResource(IDR_USER_MANAGER_HTML); source->AddResourcePath(kUserManagerJSPath, IDR_USER_MANAGER_JS); return source; } void UserManagerUI::GetLocalizedStrings( base::DictionaryValue* localized_strings) { user_manager_screen_handler_->GetLocalizedValues(localized_strings); const std::string& app_locale = g_browser_process->GetApplicationLocale(); webui::SetLoadTimeDataDefaults(app_locale, localized_strings); #if defined(GOOGLE_CHROME_BUILD) localized_strings->SetString("buildType", "chrome"); #else localized_strings->SetString("buildType", "chromium"); #endif }