summaryrefslogtreecommitdiffstats
path: root/chrome/browser/favicon_service.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-29 04:02:38 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-29 04:02:38 +0000
commit80a8fad9c0be753eb64f5a9d8cd97dbb34fb36fe (patch)
tree63a6f115d185b10701f11cd86d8fede5fe8a2711 /chrome/browser/favicon_service.cc
parent37885c566d752b0d19de8533eb6aab97bf6ac799 (diff)
downloadchromium_src-80a8fad9c0be753eb64f5a9d8cd97dbb34fb36fe.zip
chromium_src-80a8fad9c0be753eb64f5a9d8cd97dbb34fb36fe.tar.gz
chromium_src-80a8fad9c0be753eb64f5a9d8cd97dbb34fb36fe.tar.bz2
WebUI: Rename DOMUIFactory to WebUIFactory.
BUG=59945 TEST=trybots Review URL: http://codereview.chromium.org/6269024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73077 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/favicon_service.cc')
-rw-r--r--chrome/browser/favicon_service.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/favicon_service.cc b/chrome/browser/favicon_service.cc
index b476a41..f977119 100644
--- a/chrome/browser/favicon_service.cc
+++ b/chrome/browser/favicon_service.cc
@@ -1,10 +1,10 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/favicon_service.h"
-#include "chrome/browser/dom_ui/dom_ui_factory.h"
+#include "chrome/browser/dom_ui/web_ui_factory.h"
#include "chrome/browser/history/history.h"
#include "chrome/browser/history/history_backend.h"
#include "chrome/browser/profiles/profile.h"
@@ -51,7 +51,7 @@ FaviconService::Handle FaviconService::GetFaviconForURL(
FaviconService::Handle handle = request->handle();
if (page_url.SchemeIs(chrome::kChromeUIScheme) ||
page_url.SchemeIs(chrome::kExtensionScheme)) {
- DOMUIFactory::GetFaviconForURL(profile_, request, page_url);
+ WebUIFactory::GetFaviconForURL(profile_, request, page_url);
} else {
HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
if (hs)