Commit 0f9c1f1f authored by Ahmed Fakhry's avatar Ahmed Fakhry Committed by Commit Bot

Feedback: Update consent string

Demo: https://bugs.chromium.org/p/chromium/issues/detail?id=852387#c4

BUG=852387

Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation
Change-Id: I16227efb940473d3b7aa56d37760483c23d7b799
Reviewed-on: https://chromium-review.googlesource.com/1100158Reviewed-by: default avatarXiyuan Xia <xiyuan@chromium.org>
Commit-Queue: Ahmed Fakhry <afakhry@chromium.org>
Cr-Commit-Position: refs/heads/master@{#567309}
parent dab7b3e5
......@@ -5423,16 +5423,8 @@ the Bookmarks menu.">
<message name="IDS_FEEDBACK_IWLWIFI_DEBUG_DUMP_EXPLAINER" desc="Displayed in the system information dialog instead of the actual contents of Intel WiFi debug logs, which are too large to display and too obscure and proprietary for users to understand.">
&lt;Four files generated by Intel Wi-Fi firmware: csr.lst, fh_regs.lst, radio_reg.lst, monitor.lst.sysmon. The first three are binary files containing register dumps, and are asserted by Intel to contain no personal or device-identifying information. The last file is an execution trace from the Intel firmware; it has been scrubbed of any personal or device-identifying information, but is too large to display here. These files were generated in response to recent Wi-Fi problems with your device, and will be shared with Intel to help troubleshoot these problems.&gt;
</message>
<message name="IDS_FEEDBACK_PRIVACY_NOTE" desc="Text for the privacy note included with Chrome OS">
Your Chrome and operating system version will be submitted in addition
to any information you choose to include above. If you include your email
address, Google may contact you regarding your feedback report. This feedback
is used to diagnose problems and help improve Chrome. Any personal information
you submit, whether explicitly or incidentally will be protected in
accordance with our privacy policies.<ph name="BEGIN_BOLD">&lt;strong&gt;
</ph> By submitting this feedback, you agree that Google may use feedback
that you provide to improve any Google product or service.
<ph name="END_BOLD">&lt;/strong&gt;</ph>
<message name="IDS_FEEDBACK_PRIVACY_NOTE" desc="Text for the privacy note included in the feedback app">
Go to the <ph name="BEGIN_LINK1">&lt;a href="#" id="legal-help-page-url"&gt;</ph>Legal Help page<ph name="END_LINK1">&lt;/a&gt;</ph> to request content changes for legal reasons. Some account and system information may be sent to Google. We will use the information you give us to help address technical issues and to improve our services, subject to our <ph name="BEGIN_LINK2">&lt;a href="#" id="privacy-policy-url"&gt;</ph>Privacy Policy<ph name="END_LINK2">&lt;/a&gt;</ph> and <ph name="BEGIN_LINK3">&lt;a href="#" id="terms-of-service-url"&gt;</ph>Terms of Service<ph name="END_LINK3">&lt;/a&gt;</ph>.
</message>
<message name="IDS_FEEDBACK_NO_DESCRIPTION" desc="Message shown when no text is entered before hitting send feedback">
Please tell us what is happening before sending the feedback.
......
......@@ -138,10 +138,12 @@ body {
.content #privacy-note {
color: #969696;
font-size: 10px;
font-size: 12px;
line-height: 15px;
margin-bottom: 20px;
margin-top: 20px;
text-align: justify;
text-justify: inter-word;
}
.content .buttons-pane {
......
......@@ -13,3 +13,18 @@ var FEEDBACK_LANDING_PAGE =
*/
var FEEDBACK_LANDING_PAGE_TECHSTOP =
'https://support.google.com/pixelbook/answer/7659411';
/** @type {string}
* @const
*/
var FEEDBACK_LEGAL_HELP_URL = 'https://support.google.com/legal/answer/3110420';
/** @type {string}
* @const
*/
var FEEDBACK_PRIVACY_POLICY_URL = 'https://policies.google.com/privacy';
/** @type {string}
* @const
*/
var FEEDBACK_TERM_OF_SERVICE_URL = 'https://policies.google.com/terms';
......@@ -446,6 +446,25 @@ function initialize() {
$('histograms-url').onclick =
windowOpener(STATS_WINDOW_ID, 'chrome://histograms');
}
if ($('legal-help-page-url')) {
$('legal-help-page-url').onclick = function() {
window.open(FEEDBACK_LEGAL_HELP_URL, '_blank');
};
}
if ($('privacy-policy-url')) {
$('privacy-policy-url').onclick = function() {
window.open(FEEDBACK_PRIVACY_POLICY_URL, '_blank');
};
}
if ($('terms-of-service-url')) {
$('terms-of-service-url').onclick = function() {
window.open(FEEDBACK_TERM_OF_SERVICE_URL, '_blank');
};
}
// Make sure our focus starts on the description field.
$('description-text').focus();
});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment