2013-07-24 11:56:55 +00:00
|
|
|
#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);
|
|
|
|
};
|
|
|
|
|
2013-11-17 23:20:17 +00:00
|
|
|
} // namespace brightray
|
2013-07-24 11:56:55 +00:00
|
|
|
|
|
|
|
#endif
|