Index: chrome/browser/ui/webui/ntp/new_tab_ui.cc |
=================================================================== |
--- chrome/browser/ui/webui/ntp/new_tab_ui.cc (revision 133676) |
+++ chrome/browser/ui/webui/ntp/new_tab_ui.cc (working copy) |
@@ -384,11 +384,11 @@ |
std::map<std::string, std::pair<std::string, int> >::iterator it = |
resource_map_.find(path); |
if (it != resource_map_.end()) { |
- scoped_refptr<RefCountedStaticMemory> resource_bytes( |
+ scoped_refptr<base::RefCountedStaticMemory> resource_bytes( |
it->second.second ? |
ResourceBundle::GetSharedInstance().LoadDataResourceBytes( |
it->second.second) : |
- new RefCountedStaticMemory); |
+ new base::RefCountedStaticMemory); |
SendResponse(request_id, resource_bytes); |
return; |
} |