| OLD | NEW |
| 1 // Copyright (c) 2010 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_SHELF_MAC_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_SHELF_MAC_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_SHELF_MAC_H_ | 6 #define CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_SHELF_MAC_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
| 10 | 10 |
| 11 #include "chrome/browser/download/download_shelf.h" | 11 #include "chrome/browser/download/download_shelf.h" |
| 12 | 12 |
| 13 class BaseDownloadItemModel; | 13 class BaseDownloadItemModel; |
| 14 class CustomDrawButton; | |
| 15 class DownloadItemMac; | |
| 16 | 14 |
| 17 @class ShelfView; | |
| 18 @class DownloadShelfController; | 15 @class DownloadShelfController; |
| 19 | 16 |
| 20 // A class to bridge the chromium download shelf to mac gui. This is just a | 17 // A class to bridge the chromium download shelf to mac gui. This is just a |
| 21 // wrapper class that forward everything to DownloadShelfController. | 18 // wrapper class that forward everything to DownloadShelfController. |
| 22 | 19 |
| 23 class DownloadShelfMac : public DownloadShelf { | 20 class DownloadShelfMac : public DownloadShelf { |
| 24 public: | 21 public: |
| 25 DownloadShelfMac(Browser* browser, DownloadShelfController* controller); | 22 DownloadShelfMac(Browser* browser, DownloadShelfController* controller); |
| 26 | 23 |
| 27 // DownloadShelf implementation. | 24 // DownloadShelf implementation. |
| 28 virtual void AddDownload(BaseDownloadItemModel* download_model); | 25 virtual void AddDownload(BaseDownloadItemModel* download_model); |
| 29 virtual bool IsShowing() const; | 26 virtual bool IsShowing() const; |
| 30 virtual bool IsClosing() const; | 27 virtual bool IsClosing() const; |
| 31 virtual void Show(); | 28 virtual void Show(); |
| 32 virtual void Close(); | 29 virtual void Close(); |
| 33 virtual Browser* browser() const; | 30 virtual Browser* browser() const; |
| 34 | 31 |
| 35 private: | 32 private: |
| 36 // The browser that owns this shelf. | 33 // The browser that owns this shelf. |
| 37 Browser* browser_; | 34 Browser* browser_; |
| 38 | 35 |
| 39 DownloadShelfController* shelf_controller_; // weak, owns us | 36 DownloadShelfController* shelf_controller_; // weak, owns us |
| 40 }; | 37 }; |
| 41 | 38 |
| 42 #endif // CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_SHELF_MAC_H_ | 39 #endif // CHROME_BROWSER_UI_COCOA_DOWNLOAD_DOWNLOAD_SHELF_MAC_H_ |
| OLD | NEW |