| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_ITEM_MAC_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_ITEM_MAC_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_ITEM_MAC_H_ | 6 #define CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_ITEM_MAC_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 class DownloadItemMac : DownloadItem::Observer { | 29 class DownloadItemMac : DownloadItem::Observer { |
| 30 public: | 30 public: |
| 31 // DownloadItemMac takes ownership of |download_model|. | 31 // DownloadItemMac takes ownership of |download_model|. |
| 32 DownloadItemMac(BaseDownloadItemModel* download_model, | 32 DownloadItemMac(BaseDownloadItemModel* download_model, |
| 33 DownloadItemController* controller); | 33 DownloadItemController* controller); |
| 34 | 34 |
| 35 // Destructor. | 35 // Destructor. |
| 36 virtual ~DownloadItemMac(); | 36 virtual ~DownloadItemMac(); |
| 37 | 37 |
| 38 // DownloadItem::Observer implementation | 38 // DownloadItem::Observer implementation |
| 39 virtual void OnDownloadUpdated(DownloadItem* download); | 39 virtual void OnDownloadUpdated(DownloadItem* download) OVERRIDE; |
| 40 virtual void OnDownloadOpened(DownloadItem* download); | 40 virtual void OnDownloadOpened(DownloadItem* download) OVERRIDE; |
| 41 | 41 |
| 42 BaseDownloadItemModel* download_model() { return download_model_.get(); } | 42 BaseDownloadItemModel* download_model() { return download_model_.get(); } |
| 43 | 43 |
| 44 // Asynchronous icon loading support. | 44 // Asynchronous icon loading support. |
| 45 void LoadIcon(); | 45 void LoadIcon(); |
| 46 | 46 |
| 47 private: | 47 private: |
| 48 // Callback for asynchronous icon loading. | 48 // Callback for asynchronous icon loading. |
| 49 void OnExtractIconComplete(IconManager::Handle handle, | 49 void OnExtractIconComplete(IconManager::Handle handle, |
| 50 gfx::Image* icon_bitmap); | 50 gfx::Image* icon_bitmap); |
| 51 | 51 |
| 52 // The download item model we represent. | 52 // The download item model we represent. |
| 53 scoped_ptr<BaseDownloadItemModel> download_model_; | 53 scoped_ptr<BaseDownloadItemModel> download_model_; |
| 54 | 54 |
| 55 // The objective-c controller object. | 55 // The objective-c controller object. |
| 56 DownloadItemController* item_controller_; // weak, owns us. | 56 DownloadItemController* item_controller_; // weak, owns us. |
| 57 | 57 |
| 58 // For canceling an in progress icon request. | 58 // For canceling an in progress icon request. |
| 59 CancelableRequestConsumerT<int, 0> icon_consumer_; | 59 CancelableRequestConsumerT<int, 0> icon_consumer_; |
| 60 | 60 |
| 61 // Stores the last known path where the file will be saved. | 61 // Stores the last known path where the file will be saved. |
| 62 FilePath lastFilePath_; | 62 FilePath lastFilePath_; |
| 63 | 63 |
| 64 DISALLOW_COPY_AND_ASSIGN(DownloadItemMac); | 64 DISALLOW_COPY_AND_ASSIGN(DownloadItemMac); |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 #endif // CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_ITEM_MAC_H_ | 67 #endif // CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_ITEM_MAC_H_ |
| OLD | NEW |