Cleanup unused headers, data members and functions.

This commit is contained in:
Cheng Zhao 2013-05-14 15:36:40 +08:00 committed by Adam Roben
parent 2cd6dd791e
commit f623ddf7fc
5 changed files with 4 additions and 17 deletions

View file

@ -93,10 +93,9 @@ class BundledDataSource : public content::URLDataSource {
}
DevToolsUI::DevToolsUI(BrowserContext* browser_context, content::WebUI* web_ui)
: WebUIController(web_ui),
browser_context_(browser_context) {
: WebUIController(web_ui) {
web_ui->SetBindings(0);
content::URLDataSource::Add(browser_context_, new BundledDataSource());
content::URLDataSource::Add(browser_context, new BundledDataSource());
}
}