blob: db1265b27cc941e51038438f0832f75105f58782 (
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
47
48
49
50
51
52
|
// Copyright (c) 2011 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_DOWNLOAD_DOWNLOAD_MANAGER_DELEGATE_H_
#define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_DELEGATE_H_
#pragma once
#include "base/basictypes.h"
#include "base/memory/weak_ptr.h"
class DownloadManager;
class FilePath;
class TabContents;
class SavePackage;
// Browser's download manager: manages all downloads and destination view.
class DownloadManagerDelegate {
public:
// Retrieve the directories to save html pages and downloads to.
virtual void GetSaveDir(TabContents* tab_contents,
FilePath* website_save_dir,
FilePath* download_save_dir) = 0;
// Asks the user for the path to save a page. The embedder calls
// SavePackage::OnPathPicked to give the answer.
virtual void ChooseSavePath(const base::WeakPtr<SavePackage>& save_package,
const FilePath& suggested_path,
bool can_save_as_complete) = 0;
// Asks the user for the path for a download. The embedder calls
// DownloadManager::FileSelected or DownloadManager::FileSelectionCanceled to
// give the answer.
virtual void ChooseDownloadPath(DownloadManager* download_manager,
TabContents* tab_contents,
const FilePath& suggested_path,
void* data) = 0;
// Called when the download system wants to alert a TabContents that a
// download has started, but the TabContents has gone away. This lets an
// embedder return an alternative TabContents. The embedder can return NULL.
virtual TabContents* GetAlternativeTabContentsToNotifyForDownload(
DownloadManager* download_manager) = 0;
protected:
DownloadManagerDelegate() {}
virtual ~DownloadManagerDelegate() {}
DISALLOW_COPY_AND_ASSIGN(DownloadManagerDelegate);
};
#endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_DELEGATE_H_
|