Check-in [fc7a05e23a]
Overview
Comment:ChromeOS: Only emit a warning on non-ChromeOS devices, still initialize
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:fc7a05e23aeed9f7335f94be49ffdbcb84a63bd9
User & Date: rkeene on 2016-03-01 00:43:22
Other Links: manifest | tags
Context
2016-03-01
00:43
ChromeOS: Added artwork for the Chrome Web Store check-in: fe2620544f user: rkeene tags: trunk
00:43
ChromeOS: Only emit a warning on non-ChromeOS devices, still initialize check-in: fc7a05e23a user: rkeene tags: trunk
2016-02-29
22:23
ChomeOS: Release 6 check-in: b45f1b708e user: rkeene tags: trunk
Changes

Modified build/chrome/cackey.js from [6bb2c4f501] to [3273b79cbc].

   658    658   
   659    659   		return;
   660    660   	}
   661    661   
   662    662   	/* Verify that we can register callbacks */
   663    663   	if (!chrome.certificateProvider) {
   664    664   		if (!GoogleSmartCard.IS_DEBUG_BUILD) {
   665         -			console.error("[cackey] This extension only works on ChromeOS!");
   666         -
   667         -			return;
   668         -		} else {
   669         -			console.log("[cackey] This extension only works on ChromeOS, but you appear to be debugging it -- trying anyway.");
          665  +			console.info("[cackey] This extension's primary functionality only works on ChromeOS!  You won't be able to do much with it.");
   670    666   		}
   671    667   	}
   672    668   
   673    669   	elementEmbed = document.createElement('embed');
   674    670   	elementEmbed.type = "application/x-pnacl";
   675    671   	elementEmbed.width = 0;
   676    672   	elementEmbed.height = 0;