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

Unified Diff: chrome/browser/ui/views/download/download_item_view.h

Issue 2439533002: Download Feedback Service should upload all eligible downloads (Closed)
Patch Set: nit function renaming Created 4 years, 2 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
Index: chrome/browser/ui/views/download/download_item_view.h
diff --git a/chrome/browser/ui/views/download/download_item_view.h b/chrome/browser/ui/views/download/download_item_view.h
index df9dd8708f42d29a4c420d203be0860f2cbbb2da..f3586461303ec2911050862ce61dac6883f4a660 100644
--- a/chrome/browser/ui/views/download/download_item_view.h
+++ b/chrome/browser/ui/views/download/download_item_view.h
@@ -25,6 +25,7 @@
#include "base/task/cancelable_task_tracker.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
+#include "chrome/browser/download/download_commands.h"
#include "chrome/browser/download/download_item_model.h"
#include "chrome/browser/icon_manager.h"
#include "content/public/browser/download_item.h"
@@ -84,6 +85,17 @@ class DownloadItemView : public views::InkDropHostView,
// Returns the DownloadItem model object belonging to this item.
content::DownloadItem* download() { return model_.download(); }
+ // If download is bad && download feedback feature is available &&
+ // not incognito.
+ bool ShouldAllowDownloadFeedback();
Peter Kasting 2016/10/24 21:39:07 Nit: I suggest a comment that states the purpose o
Jialiu Lin 2016/10/25 21:07:09 Function merged into MaybeSubmitDownloadToFeedback
+
+ // Submit download to download feedback service if user opts in safe browsing
+ // extended reporting (SBER) service, then perform the specified
+ // |download_command|. If user hasn't seen SBER opt-in text before,
+ // show SBER opt-in dialog first.
+ void MaybeSubmitDownloadToFeedbackService(
Peter Kasting 2016/10/24 21:39:07 It's very confusing that you have both MaybeSubmit
Jialiu Lin 2016/10/25 21:07:09 Good suggestion! I have renamed the second functio
+ DownloadCommands::Command download_command);
+
// DownloadItem::Observer methods
void OnDownloadUpdated(content::DownloadItem* download) override;
void OnDownloadOpened(content::DownloadItem* download) override;
@@ -147,8 +159,10 @@ class DownloadItemView : public views::InkDropHostView,
bool SubmitDownloadToFeedbackService();
// If the user has |enabled| uploading, calls SubmitDownloadToFeedbackService.
- // Otherwise, it simply removes the DownloadItem without uploading.
- void PossiblySubmitDownloadToFeedbackService(bool enabled);
+ // Otherwise, apply the download command (DISCARD or KEEP) without uploading.
+ void PossiblySubmitDownloadToFeedbackService(
Peter Kasting 2016/10/24 21:39:07 Nit: Call this function something more precise. I
Jialiu Lin 2016/10/25 21:07:09 Done.
+ DownloadCommands::Command download_command_id,
+ bool enabled);
Peter Kasting 2016/10/24 21:39:07 Nit: I would rename this |feedback_enabled| and pu
Jialiu Lin 2016/10/25 21:07:09 Renamed |enabled| to |feedback_enabled|, though I
// This function calculates the vertical coordinate to draw the file name text
// relative to local bounds.

Powered by Google App Engine
This is Rietveld 408576698