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

Unified Diff: chrome/browser/resources/shared/js/cr.js

Issue 6059006: [tabbed options] tidy up some bits of content settings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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/shared/js/cr.js
diff --git a/chrome/browser/resources/shared/js/cr.js b/chrome/browser/resources/shared/js/cr.js
index a4702342910dc4e9732e881bd79f22bef9852534..6686269d897f1ddd7c7f396529506bdbf3e49e4b 100644
--- a/chrome/browser/resources/shared/js/cr.js
+++ b/chrome/browser/resources/shared/js/cr.js
@@ -23,6 +23,12 @@ const cr = (function() {
const isChromeOS = /CrOS/.test(navigator.userAgent);
/**
+ * Whether this is on vanilla Linux (not chromeOS).
+ * @type {boolean}
+ */
+ const isLinux = /Linux/.test(navigator.userAgent);
+
+ /**
* Whether this uses the views toolkit or not.
* @type {boolean}
*/
@@ -325,6 +331,8 @@ const cr = (function() {
isChromeOS: isChromeOS,
isMac: isMac,
isWindows: isWindows,
+ isLinux: isLinux,
+ isViews: isViews,
define: define,
defineProperty: defineProperty,
PropertyKind: PropertyKind,

Powered by Google App Engine
This is Rietveld 408576698