Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(427)

Unified Diff: chrome/browser/browser_url_handler.cc

Issue 6513010: WebUI: Get rid of more references to DOMUI in the rest of the directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/dom_ui/menu_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_url_handler.cc
diff --git a/chrome/browser/browser_url_handler.cc b/chrome/browser/browser_url_handler.cc
index 1345cf11b05eb80abdf75586064801deee12458b..beb115670e580b798b6a953cf86b19745c4c61f7 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));
}
« no previous file with comments | « no previous file | chrome/browser/chromeos/dom_ui/menu_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698