blob: 39e82c6ce4f5c6f72100f2b1f7a6aab2b7d2a74e [file] [log] [blame]
// Copyright (c) 2015 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_ANDROID_MOCK_DOWNLOAD_CONTROLLER_H_
#define CHROME_BROWSER_DOWNLOAD_ANDROID_MOCK_DOWNLOAD_CONTROLLER_H_
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/singleton.h"
#include "chrome/browser/download/android/download_controller_base.h"
namespace chrome {
namespace android {
// Mock implementation of the DownloadController.
class MockDownloadController : public DownloadControllerBase {
public:
MockDownloadController();
~MockDownloadController() override;
// DownloadControllerBase implementation.
void OnDownloadStarted(download::DownloadItem* download_item) override;
void StartContextMenuDownload(const content::ContextMenuParams& params,
content::WebContents* web_contents,
bool is_link) override;
void AcquireFileAccessPermission(
const content::WebContents::Getter& wc_getter,
AcquireFileAccessPermissionCallback callback) override;
void SetApproveFileAccessRequestForTesting(bool approve) override;
void CreateAndroidDownload(const content::WebContents::Getter& wc_getter,
const DownloadInfo& info) override;
void AboutToResumeDownload(download::DownloadItem* download_item) override;
private:
bool approve_file_access_request_;
DISALLOW_COPY_AND_ASSIGN(MockDownloadController);
};
} // namespace android
} // namespace chrome
#endif // CHROME_BROWSER_DOWNLOAD_ANDROID_MOCK_DOWNLOAD_CONTROLLER_H_