summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/webui/signin_internals_ui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/webui/signin_internals_ui.cc')
-rw-r--r--chrome/browser/ui/webui/signin_internals_ui.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/ui/webui/signin_internals_ui.cc b/chrome/browser/ui/webui/signin_internals_ui.cc
index 668a5a9..a9a5de1 100644
--- a/chrome/browser/ui/webui/signin_internals_ui.cc
+++ b/chrome/browser/ui/webui/signin_internals_ui.cc
@@ -18,14 +18,14 @@
namespace {
-ChromeWebUIDataSource* CreateSignInInternalsHTMLSource() {
- ChromeWebUIDataSource* source =
- new ChromeWebUIDataSource(chrome::kChromeUISignInInternalsHost);
+content::WebUIDataSource* CreateSignInInternalsHTMLSource() {
+ content::WebUIDataSource* source =
+ ChromeWebUIDataSource::Create(chrome::kChromeUISignInInternalsHost);
- source->set_json_path("strings.js");
- source->add_resource_path("signin_internals.js",
+ source->SetJsonPath("strings.js");
+ source->AddResourcePath("signin_internals.js",
IDR_SIGNIN_INTERNALS_INDEX_JS);
- source->set_default_resource(IDR_SIGNIN_INTERNALS_INDEX_HTML);
+ source->SetDefaultResource(IDR_SIGNIN_INTERNALS_INDEX_HTML);
return source;
}
@@ -34,7 +34,7 @@ ChromeWebUIDataSource* CreateSignInInternalsHTMLSource() {
SignInInternalsUI::SignInInternalsUI(content::WebUI* web_ui)
: WebUIController(web_ui) {
Profile* profile = Profile::FromWebUI(web_ui);
- ChromeURLDataManager::AddDataSourceImpl(
+ ChromeURLDataManager::AddWebUIDataSource(
profile, CreateSignInInternalsHTMLSource());
if (profile) {
AboutSigninInternals* about_signin_internals =