mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-20 05:38:03 +01:00
eef89ccdd3
- Standardize usage of virtual/override specifiers in CEF internals (see http://crbug.com/417463). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1903 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
49 lines
1.7 KiB
C++
49 lines
1.7 KiB
C++
// Copyright (c) 2012 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 CEF_LIBCEF_BROWSER_DOWNLOAD_MANAGER_DELEGATE_H_
|
|
#define CEF_LIBCEF_BROWSER_DOWNLOAD_MANAGER_DELEGATE_H_
|
|
#pragma once
|
|
|
|
#include <set>
|
|
|
|
#include "base/compiler_specific.h"
|
|
#include "base/memory/weak_ptr.h"
|
|
#include "content/public/browser/download_item.h"
|
|
#include "content/public/browser/download_manager.h"
|
|
#include "content/public/browser/download_manager_delegate.h"
|
|
|
|
class CefDownloadManagerDelegate
|
|
: public content::DownloadItem::Observer,
|
|
public content::DownloadManager::Observer,
|
|
public content::DownloadManagerDelegate {
|
|
public:
|
|
explicit CefDownloadManagerDelegate(content::DownloadManager* manager);
|
|
~CefDownloadManagerDelegate() override;
|
|
|
|
private:
|
|
// DownloadItem::Observer methods.
|
|
void OnDownloadUpdated(content::DownloadItem* download) override;
|
|
void OnDownloadDestroyed(content::DownloadItem* download) override;
|
|
|
|
// DownloadManager::Observer methods.
|
|
void OnDownloadCreated(content::DownloadManager* manager,
|
|
content::DownloadItem* item) override;
|
|
void ManagerGoingDown(content::DownloadManager* manager) override;
|
|
|
|
// DownloadManagerDelegate methods.
|
|
bool DetermineDownloadTarget(
|
|
content::DownloadItem* item,
|
|
const content::DownloadTargetCallback& callback) override;
|
|
void GetNextId(const content::DownloadIdCallback& callback) override;
|
|
|
|
content::DownloadManager* manager_;
|
|
base::WeakPtrFactory<content::DownloadManager> manager_ptr_factory_;
|
|
std::set<content::DownloadItem*> observing_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefDownloadManagerDelegate);
|
|
};
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_DOWNLOAD_MANAGER_DELEGATE_H_
|