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