mirror of
https://github.com/electron/electron.git
synced 2026-02-19 03:14:51 -05:00
20 lines
441 B
C++
20 lines
441 B
C++
#ifndef BRIGHTRAY_BROWSER_DOWNLOAD_MANAGER_DELEGATE_H_
|
|
#define BRIGHTRAY_BROWSER_DOWNLOAD_MANAGER_DELEGATE_H_
|
|
|
|
#include "content/public/browser/download_manager_delegate.h"
|
|
|
|
namespace brightray {
|
|
|
|
class DownloadManagerDelegate : public content::DownloadManagerDelegate {
|
|
public:
|
|
DownloadManagerDelegate();
|
|
~DownloadManagerDelegate();
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(DownloadManagerDelegate);
|
|
};
|
|
|
|
} // namespace brightray
|
|
|
|
#endif
|