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

Unified Diff: chrome/browser/feedback/feedback_data.cc

Issue 9104030: Include a timestamp with and add a keyboard shortcut for Feedback. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 11 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/feedback/feedback_data.cc
diff --git a/chrome/browser/feedback/feedback_data.cc b/chrome/browser/feedback/feedback_data.cc
index 60903c7989fa426fdc67f99892af4bdedd0c0086..35aac731c7cdf14eee5daf1738ce51aeb9265483 100644
--- a/chrome/browser/feedback/feedback_data.cc
+++ b/chrome/browser/feedback/feedback_data.cc
@@ -36,6 +36,7 @@ void FeedbackData::UpdateData(Profile* profile,
, const std::string& user_email
, const bool send_sys_info
, const bool sent_report
+ , const std::string& timestamp
#endif
) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
@@ -49,6 +50,7 @@ void FeedbackData::UpdateData(Profile* profile,
user_email_ = user_email;
send_sys_info_ = send_sys_info;
sent_report_ = sent_report;
+ timestamp_ = timestamp;
#endif
}
@@ -75,6 +77,7 @@ void FeedbackData::SendReport() {
, zip_content_ ? zip_content_->c_str() : NULL
, zip_content_ ? zip_content_->length() : 0
, send_sys_info_ ? sys_info_ : NULL
+ , timestamp_
#endif
);

Powered by Google App Engine
This is Rietveld 408576698