Index: chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc |
diff --git a/chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc b/chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc |
index dcfb73293d72ad40c648693274070b04d84116aa..d16840f1a77da4fbcf4ed79e06a2cc527bea8526 100644 |
--- a/chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc |
+++ b/chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc |
@@ -460,10 +460,10 @@ void ChromeWebUIControllerFactory::GetFaviconForURL( |
ExtensionWebUI::GetFaviconForURL(profile, request, url); |
} else { |
history::FaviconData favicon; |
- favicon.image_data = scoped_refptr<base::RefCountedMemory>( |
+ favicon.bitmap_data = scoped_refptr<base::RefCountedMemory>( |
GetFaviconResourceBytes(url)); |
- favicon.known_icon = favicon.image_data.get() != NULL && |
- favicon.image_data->size() > 0; |
+ favicon.known_icon = favicon.bitmap_data.get() != NULL && |
+ favicon.bitmap_data->size() > 0; |
favicon.icon_type = history::FAVICON; |
request->ForwardResultAsync(request->handle(), favicon); |
} |