blob: d7c8c1b24cbc845b1b13d1144e0528cc1399088e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_COCOA_DOWNLOAD_SHELF_MAC_H_
#define CHROME_BROWSER_COCOA_DOWNLOAD_SHELF_MAC_H_
#pragma once
#import <Cocoa/Cocoa.h>
#include <vector>
#include "base/scoped_ptr.h"
#include "chrome/browser/download/download_shelf.h"
class BaseDownloadItemModel;
class CustomDrawButton;
class DownloadItemMac;
@class ShelfView;
@class DownloadShelfController;
// A class to bridge the chromium download shelf to mac gui. This is just a
// wrapper class that forward everything to DownloadShelfController.
class DownloadShelfMac : public DownloadShelf {
public:
explicit DownloadShelfMac(Browser* browser,
DownloadShelfController* controller);
// DownloadShelf implementation.
virtual void AddDownload(BaseDownloadItemModel* download_model);
virtual bool IsShowing() const;
virtual bool IsClosing() const;
virtual void Show();
virtual void Close();
virtual Browser* browser() const { return browser_; }
private:
// The browser that owns this shelf.
Browser* browser_;
DownloadShelfController* shelf_controller_; // weak, owns us
};
#endif // CHROME_BROWSER_COCOA_DOWNLOAD_SHELF_MAC_H_
|