Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2152)

Unified Diff: chrome/browser/android/download/mock_download_controller_android.h

Issue 1217223006: Prompt user for file access permission before download starts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/android/download/mock_download_controller_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/download/mock_download_controller_android.h
diff --git a/chrome/browser/android/download/mock_download_controller_android.h b/chrome/browser/android/download/mock_download_controller_android.h
new file mode 100644
index 0000000000000000000000000000000000000000..acb80c963c81cc3873ae95af337c3daf298d0b97
--- /dev/null
+++ b/chrome/browser/android/download/mock_download_controller_android.h
@@ -0,0 +1,52 @@
+// 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_ANDROID_DOWNLOAD_MOCK_DOWNLOAD_CONTROLLER_ANDROID_H_
+#define CHROME_BROWSER_ANDROID_DOWNLOAD_MOCK_DOWNLOAD_CONTROLLER_ANDROID_H_
+
+#include "base/callback.h"
+#include "base/memory/singleton.h"
+#include "content/public/browser/android/download_controller_android.h"
+
+namespace content {
+class DownloadItem;
+class WebContents;
+} // namespace content
+
+namespace chrome {
+namespace android {
+
+// Mock implementation of the DownloadControllerAndroid.
+class MockDownloadControllerAndroid
+ : public content::DownloadControllerAndroid {
+ public:
+ MockDownloadControllerAndroid();
+ ~MockDownloadControllerAndroid() override;
+
+ // DownloadControllerAndroid implementation.
+ void CreateGETDownload(int render_process_id, int render_view_id,
+ int request_id) override;
+ void OnDownloadStarted(content::DownloadItem* download_item) override;
+ void StartContextMenuDownload(
+ const content::ContextMenuParams& params,
+ content::WebContents* web_contents,
+ bool is_link, const std::string& extra_headers) override;
+ void DangerousDownloadValidated(
+ content::WebContents* web_contents, int download_id,
+ bool accept) override;
+ void AcquireFileAccessPermission(
+ content::WebContents* web_contents,
+ const AcquireFileAccessPermissionCallback& callback) override;
+ void SetApproveFileAccessRequestForTesting(bool approve) override;
+
+ private:
+ bool approve_file_access_request_;
+ DISALLOW_COPY_AND_ASSIGN(MockDownloadControllerAndroid);
+};
+
+} // namespace android
+} // namespace chrome
+
+
+#endif // CHROME_BROWSER_ANDROID_DOWNLOAD_MOCK_DOWNLOAD_CONTROLLER_ANDROID_H_
« no previous file with comments | « no previous file | chrome/browser/android/download/mock_download_controller_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698