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

Unified Diff: chrome/browser/resources/chromeos/login/login.js

Issue 9836039: Add reporting notification to the enterprise banner on the CrOS login screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. Created 8 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: 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
« no previous file with comments | « chrome/browser/resources/chromeos/login/login.html ('k') | chrome/browser/resources/chromeos/login/notification_area.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698