diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-24 02:25:15 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-24 02:25:15 +0000 |
commit | 6599259d34359e9c2bf90ed17355f3ffeb3442f1 (patch) | |
tree | 5ecbb2f269b51a0eb100deaf44ef28b580369836 /chrome/browser/extensions | |
parent | 9baf92590bdf9fa800c2291bdf3722f8248dff78 (diff) | |
download | chromium_src-6599259d34359e9c2bf90ed17355f3ffeb3442f1.zip chromium_src-6599259d34359e9c2bf90ed17355f3ffeb3442f1.tar.gz chromium_src-6599259d34359e9c2bf90ed17355f3ffeb3442f1.tar.bz2 |
WebUI: Fix the naming of some files and its classes.
BUG=12095
TEST=trybots
Review URL: http://codereview.chromium.org/6569003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75845 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions')
-rw-r--r-- | chrome/browser/extensions/extension_function_dispatcher.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/extensions/extension_function_dispatcher.cc b/chrome/browser/extensions/extension_function_dispatcher.cc index 28305880..9af5481 100644 --- a/chrome/browser/extensions/extension_function_dispatcher.cc +++ b/chrome/browser/extensions/extension_function_dispatcher.cc @@ -51,7 +51,7 @@ #include "chrome/browser/renderer_host/render_process_host.h" #include "chrome/browser/renderer_host/render_view_host.h" #include "chrome/browser/webui/chrome_url_data_manager.h" -#include "chrome/browser/webui/web_ui_favicon_source.h" +#include "chrome/browser/webui/favicon_source.h" #include "chrome/common/notification_service.h" #include "chrome/common/render_messages.h" #include "chrome/common/render_messages_params.h" @@ -388,10 +388,10 @@ ExtensionFunctionDispatcher::ExtensionFunctionDispatcher( render_view_host->process()->id()); // If the extension has permission to load chrome://favicon/ resources we need - // to make sure that the WebUIFavIconSource is registered with the + // to make sure that the FavIconSource is registered with the // ChromeURLDataManager. if (extension->HasHostPermission(GURL(chrome::kChromeUIFavIconURL))) { - WebUIFavIconSource* favicon_source = new WebUIFavIconSource(profile_); + FavIconSource* favicon_source = new FavIconSource(profile_); profile_->GetChromeURLDataManager()->AddDataSource(favicon_source); } |