2012-06-08 18:01:01 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
2012-04-03 03:34:16 +02:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_DOWNLOAD_MANAGER_DELEGATE_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_DOWNLOAD_MANAGER_DELEGATE_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "base/compiler_specific.h"
|
|
|
|
#include "base/memory/ref_counted.h"
|
|
|
|
#include "content/public/browser/download_manager_delegate.h"
|
|
|
|
|
|
|
|
struct DownloadStateInfo;
|
|
|
|
|
|
|
|
namespace content {
|
|
|
|
class DownloadManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
class CefDownloadManagerDelegate
|
|
|
|
: public content::DownloadManagerDelegate,
|
|
|
|
public base::RefCountedThreadSafe<CefDownloadManagerDelegate> {
|
|
|
|
public:
|
|
|
|
CefDownloadManagerDelegate();
|
|
|
|
|
|
|
|
void SetDownloadManager(content::DownloadManager* manager);
|
|
|
|
|
|
|
|
// DownloadManagerDelegate methods.
|
|
|
|
virtual bool ShouldStartDownload(int32 download_id) OVERRIDE;
|
2012-06-22 00:50:34 +02:00
|
|
|
virtual void ChooseDownloadPath(content::DownloadItem* item) OVERRIDE;
|
2012-06-11 19:35:23 +02:00
|
|
|
virtual void AddItemToPersistentStore(content::DownloadItem* item) OVERRIDE;
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend class base::RefCountedThreadSafe<CefDownloadManagerDelegate>;
|
|
|
|
|
|
|
|
virtual ~CefDownloadManagerDelegate();
|
|
|
|
|
|
|
|
void GenerateFilename(int32 download_id,
|
|
|
|
const FilePath& generated_name);
|
|
|
|
void RestartDownload(int32 download_id,
|
2012-06-08 18:01:01 +02:00
|
|
|
const FilePath& suggested_path);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2012-06-11 19:35:23 +02:00
|
|
|
FilePath PlatformChooseDownloadPath(content::WebContents* web_contents,
|
|
|
|
const FilePath& suggested_path);
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
content::DownloadManager* download_manager_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefDownloadManagerDelegate);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_DOWNLOAD_MANAGER_DELEGATE_H_
|