| Index: chrome/browser/resources/chromeos/login/login.js
|
| diff --git a/chrome/browser/resources/chromeos/login/login.js b/chrome/browser/resources/chromeos/login/login.js
|
| index a8eedc230bf862ea1289b99b0a1aa75b60af7992..5d8b420132efeaaf8a6e63289bcfbbf62eb914c1 100644
|
| --- a/chrome/browser/resources/chromeos/login/login.js
|
| +++ b/chrome/browser/resources/chromeos/login/login.js
|
| @@ -163,9 +163,10 @@ cr.define('cr.ui', function() {
|
| * Sets the text content of the enterprise info message.
|
| * If the text is empty, the entire notification will be hidden.
|
| * @param {string} messageText The message text.
|
| + * @param {boolean} showTrackingHint Whether to show the reporting warning.
|
| */
|
| - Oobe.setEnterpriseInfo = function(messageText) {
|
| - DisplayManager.setEnterpriseInfo(messageText);
|
| + Oobe.setEnterpriseInfo = function(messageText, showReportingWarning) {
|
| + DisplayManager.setEnterpriseInfo(messageText, showReportingWarning);
|
| };
|
|
|
| // Export
|
|
|