summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/cocoa')
-rw-r--r--chrome/browser/cocoa/history_menu_bridge.h2
-rw-r--r--chrome/browser/cocoa/history_menu_bridge.mm2
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/cocoa/history_menu_bridge.h b/chrome/browser/cocoa/history_menu_bridge.h
index 488909f..bfa7959b 100644
--- a/chrome/browser/cocoa/history_menu_bridge.h
+++ b/chrome/browser/cocoa/history_menu_bridge.h
@@ -132,7 +132,7 @@ class HistoryMenuBridge : public NotificationObserver,
// GetFaviconForHistoryItem() was called on (UI thread).
void GotFaviconData(FaviconService::Handle handle,
bool know_favicon,
- scoped_refptr<RefCountedBytes> data,
+ scoped_refptr<RefCountedMemory> data,
bool expired,
GURL url);
diff --git a/chrome/browser/cocoa/history_menu_bridge.mm b/chrome/browser/cocoa/history_menu_bridge.mm
index d66dc37..85b9a72 100644
--- a/chrome/browser/cocoa/history_menu_bridge.mm
+++ b/chrome/browser/cocoa/history_menu_bridge.mm
@@ -371,7 +371,7 @@ void HistoryMenuBridge::GetFaviconForHistoryItem(HistoryItem* item) {
void HistoryMenuBridge::GotFaviconData(FaviconService::Handle handle,
bool know_favicon,
- scoped_refptr<RefCountedBytes> data,
+ scoped_refptr<RefCountedMemory> data,
bool expired,
GURL url) {
// Since we're going to do Cocoa-y things, make sure this is the main thread.