Home | History | Annotate | Download | only in user_actions
      1 // Copyright 2012 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #include "chrome/browser/ui/webui/user_actions/user_actions_ui.h"
      6 
      7 #include "chrome/browser/profiles/profile.h"
      8 #include "chrome/browser/ui/webui/user_actions/user_actions_ui_handler.h"
      9 #include "chrome/common/url_constants.h"
     10 #include "content/public/browser/web_ui.h"
     11 #include "content/public/browser/web_ui_controller.h"
     12 #include "content/public/browser/web_ui_data_source.h"
     13 #include "grit/browser_resources.h"
     14 
     15 UserActionsUI::UserActionsUI(content::WebUI* web_ui)
     16     : content::WebUIController(web_ui) {
     17   // Set up the chrome://user-actions/ source.
     18   content::WebUIDataSource* html_source =
     19       content::WebUIDataSource::Create(chrome::kChromeUIUserActionsHost);
     20   html_source->SetDefaultResource(IDR_USER_ACTIONS_HTML);
     21   html_source->AddResourcePath("user_actions.css", IDR_USER_ACTIONS_CSS);
     22   html_source->AddResourcePath("user_actions.js", IDR_USER_ACTIONS_JS);
     23 
     24   Profile* profile = Profile::FromWebUI(web_ui);
     25   content::WebUIDataSource::Add(profile, html_source);
     26 
     27   // AddMessageHandler takes ownership of UserActionsUIHandler.
     28   web_ui->AddMessageHandler(new UserActionsUIHandler());
     29 }
     30 
     31 UserActionsUI::~UserActionsUI() {}
     32