summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_url_handler.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-13 19:41:40 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-13 19:41:40 +0000
commitd0980792d29b16ef195255639f8c8aca8c969e93 (patch)
tree8c6a20bb41ecd094556af7a26d1535dc7dd4bc88 /chrome/browser/browser_url_handler.cc
parenta08ebeaea39acfe007d9ee9b25b28efd04011e5a (diff)
downloadchromium_src-d0980792d29b16ef195255639f8c8aca8c969e93.zip
chromium_src-d0980792d29b16ef195255639f8c8aca8c969e93.tar.gz
chromium_src-d0980792d29b16ef195255639f8c8aca8c969e93.tar.bz2
WebUI: Get rid of more references to DOMUI in the rest of the directories.
BUG=59945 TEST=trybots Review URL: http://codereview.chromium.org/6513010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74771 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_url_handler.cc')
-rw-r--r--chrome/browser/browser_url_handler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/browser_url_handler.cc b/chrome/browser/browser_url_handler.cc
index 1345cf1..beb1156 100644
--- a/chrome/browser/browser_url_handler.cc
+++ b/chrome/browser/browser_url_handler.cc
@@ -60,7 +60,7 @@ static bool ReverseViewSource(GURL* url, Profile* profile) {
}
// Handles rewriting Web UI URLs.
-static bool HandleDOMUI(GURL* url, Profile* profile) {
+static bool HandleWebUI(GURL* url, Profile* profile) {
if (!WebUIFactory::UseWebUIForURL(profile, *url))
return false;
@@ -99,7 +99,7 @@ void BrowserURLHandler::InitURLHandlers() {
url_handlers_.push_back(HandlerPair(&WillHandleBrowserAboutURL,
null_handler));
// chrome: & friends.
- url_handlers_.push_back(HandlerPair(&HandleDOMUI, null_handler));
+ url_handlers_.push_back(HandlerPair(&HandleWebUI, null_handler));
// view-source:
url_handlers_.push_back(HandlerPair(&HandleViewSource, &ReverseViewSource));
}