| OLD | NEW | 
|---|
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #include "chrome/browser/cocoa/download_shelf_mac.h" | 5 #include "chrome/browser/cocoa/download_shelf_mac.h" | 
| 6 | 6 | 
| 7 #include "chrome/browser/browser.h" | 7 #include "chrome/browser/browser.h" | 
| 8 #import "chrome/browser/cocoa/download_shelf_controller.h" | 8 #import "chrome/browser/cocoa/download_shelf_controller.h" | 
| 9 #include "chrome/browser/cocoa/download_item_mac.h" | 9 #include "chrome/browser/cocoa/download_item_mac.h" | 
| 10 #include "chrome/browser/download/download_item_model.h" | 10 #include "chrome/browser/download/download_item_model.h" | 
| 11 | 11 | 
| 12 DownloadShelfMac::DownloadShelfMac(Browser* browser, | 12 DownloadShelfMac::DownloadShelfMac(Browser* browser, | 
| 13                                    DownloadShelfController* controller) | 13                                    DownloadShelfController* controller) | 
| 14     : browser_(browser), | 14     : browser_(browser), | 
| 15       shelf_controller_(controller) { | 15       shelf_controller_(controller) { | 
| 16   Show(); |  | 
| 17 } | 16 } | 
| 18 | 17 | 
| 19 void DownloadShelfMac::AddDownload(BaseDownloadItemModel* download_model) { | 18 void DownloadShelfMac::AddDownload(BaseDownloadItemModel* download_model) { | 
| 20   [shelf_controller_ addDownloadItem:download_model]; | 19   [shelf_controller_ addDownloadItem:download_model]; | 
| 21   Show(); | 20   Show(); | 
| 22 } | 21 } | 
| 23 | 22 | 
| 24 bool DownloadShelfMac::IsShowing() const { | 23 bool DownloadShelfMac::IsShowing() const { | 
| 25   return [shelf_controller_ isVisible] == YES; | 24   return [shelf_controller_ isVisible] == YES; | 
| 26 } | 25 } | 
| 27 | 26 | 
| 28 bool DownloadShelfMac::IsClosing() const { | 27 bool DownloadShelfMac::IsClosing() const { | 
| 29   // TODO(estade): This is never called. For now just return false. | 28   // TODO(estade): This is never called. For now just return false. | 
| 30   return false; | 29   return false; | 
| 31 } | 30 } | 
| 32 | 31 | 
| 33 void DownloadShelfMac::Show() { | 32 void DownloadShelfMac::Show() { | 
| 34   [shelf_controller_ show:nil]; | 33   [shelf_controller_ show:nil]; | 
| 35   browser_->UpdateDownloadShelfVisibility(true); | 34   browser_->UpdateDownloadShelfVisibility(true); | 
| 36 } | 35 } | 
| 37 | 36 | 
| 38 void DownloadShelfMac::Close() { | 37 void DownloadShelfMac::Close() { | 
| 39   [shelf_controller_ hide:nil]; | 38   [shelf_controller_ hide:nil]; | 
| 40   browser_->UpdateDownloadShelfVisibility(false); | 39   browser_->UpdateDownloadShelfVisibility(false); | 
| 41 } | 40 } | 
| OLD | NEW | 
|---|