| Index: chrome/browser/ui/profile_error_dialog.cc
|
| diff --git a/chrome/browser/ui/profile_error_dialog.cc b/chrome/browser/ui/profile_error_dialog.cc
|
| index ec3164897ae5a93f0dbf54feb9df97092064bec2..e6a63f0310d700339938015e7b31d99f247ca073 100644
|
| --- a/chrome/browser/ui/profile_error_dialog.cc
|
| +++ b/chrome/browser/ui/profile_error_dialog.cc
|
| @@ -30,17 +30,10 @@ void OnProfileErrorDialogDismissed(const std::string& diagnostics,
|
|
|
| std::string feedback_description =
|
| l10n_util::GetStringUTF8(IDS_PROFILE_ERROR_FEEDBACK_DESCRIPTION);
|
| - if (!diagnostics.empty()) {
|
| - // TODO(afakhry): Add support to inject diagnostics to the feedback
|
| - // reports without adding them to the description. crbug.com/708511.
|
| - feedback_description +=
|
| - "\n\n" +
|
| - l10n_util::GetStringUTF8(IDS_PROFILE_ERROR_FEEDBACK_DIAGNOSTICS_LINE) +
|
| - diagnostics;
|
| - }
|
|
|
| chrome::ShowFeedbackPage(nullptr, chrome::kFeedbackSourceProfileErrorDialog,
|
| - feedback_description, kProfileErrorFeedbackCategory);
|
| + feedback_description, kProfileErrorFeedbackCategory,
|
| + diagnostics);
|
| }
|
| #endif // !defined(OS_ANDROID)
|
|
|
|
|