| Index: chrome/browser/ui/cocoa/history_menu_bridge.mm
|
| diff --git a/chrome/browser/ui/cocoa/history_menu_bridge.mm b/chrome/browser/ui/cocoa/history_menu_bridge.mm
|
| index 7dd8218b2ccae2ce20b9e83e0e3c6c6b4c206d81..5b2cc84034a8b09d7e1fae3add4b503588db5c0a 100644
|
| --- a/chrome/browser/ui/cocoa/history_menu_bridge.mm
|
| +++ b/chrome/browser/ui/cocoa/history_menu_bridge.mm
|
| @@ -471,7 +471,7 @@ void HistoryMenuBridge::GotFaviconData(FaviconService::Handle handle,
|
| profile_->GetFaviconService(Profile::EXPLICIT_ACCESS), handle);
|
| DCHECK(item);
|
| item->icon_requested = false;
|
| - item->icon_handle = NULL;
|
| + item->icon_handle = 0;
|
|
|
| // Convert the raw data to Skia and then to a NSImage.
|
| // TODO(rsesek): Is there an easier way to do this?
|
| @@ -495,6 +495,6 @@ void HistoryMenuBridge::CancelFaviconRequest(HistoryItem* item) {
|
| profile_->GetFaviconService(Profile::EXPLICIT_ACCESS);
|
| service->CancelRequest(item->icon_handle);
|
| item->icon_requested = false;
|
| - item->icon_handle = NULL;
|
| + item->icon_handle = 0;
|
| }
|
| }
|
|
|