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

Unified Diff: components/ntp_snippets/content_suggestion.h

Issue 2737723002: Downloads : Last access time update for NTP, duplicate infobar and notifications (Closed)
Patch Set: Removed changes for duplicate infobar Created 3 years, 9 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: components/ntp_snippets/content_suggestion.h
diff --git a/components/ntp_snippets/content_suggestion.h b/components/ntp_snippets/content_suggestion.h
index ea17274c45fe2402060c6c2e6830f3b42cbf9390..b2403f6c749ef97c3245abbaba77e7288dd6e952 100644
--- a/components/ntp_snippets/content_suggestion.h
+++ b/components/ntp_snippets/content_suggestion.h
@@ -21,8 +21,11 @@ namespace ntp_snippets {
// download suggestions.
struct DownloadSuggestionExtra {
DownloadSuggestionExtra();
+ DownloadSuggestionExtra(const DownloadSuggestionExtra&);
vitaliii 2017/03/10 08:15:46 Why do you need a copy constructor here?
shaktisahu 2017/03/10 08:46:55 To make the compiler happy. It complained about so
vitaliii 2017/03/10 09:04:38 I am not sure what you mean. I just patched the CL
shaktisahu 2017/03/10 15:23:01 This error comes up during compiling download_sugg
vitaliii 2017/03/10 16:41:21 ACK
~DownloadSuggestionExtra();
+ // The GUID for the downloaded file.
+ std::string download_guid;
// The file path of the downloaded file once download completes.
base::FilePath target_file_path;
// The effective MIME type of downloaded content.

Powered by Google App Engine
This is Rietveld 408576698