#ifndef CONTENT_BROWSER_DEVTOOLS_PROTOCOL_DEVTOOLS_DOWNLOAD_MANAGER_DELEGATE_H_
#define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_DEVTOOLS_DOWNLOAD_MANAGER_DELEGATE_H_
#include <stdint.h>
#include <string>
#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "content/public/browser/download_manager_delegate.h"
namespace base {
class FilePath;
}
namespace content {
class DownloadManager;
namespace protocol {
class DevToolsDownloadManagerDelegate
: public base::SupportsUserData::Data,
public content::DownloadManagerDelegate { … };
}
}
#endif