OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * The global object. | 6 * The global object. |
7 * @type {!Object} | 7 * @type {!Object} |
8 * @const | 8 * @const |
9 */ | 9 */ |
10 var global = this; | 10 var global = this; |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 | 424 |
425 /** Whether this is on chromeOS or not. */ | 425 /** Whether this is on chromeOS or not. */ |
426 get isChromeOS() { | 426 get isChromeOS() { |
427 return /CrOS/.test(navigator.userAgent); | 427 return /CrOS/.test(navigator.userAgent); |
428 }, | 428 }, |
429 | 429 |
430 /** Whether this is on vanilla Linux (not chromeOS). */ | 430 /** Whether this is on vanilla Linux (not chromeOS). */ |
431 get isLinux() { | 431 get isLinux() { |
432 return /Linux/.test(navigator.userAgent); | 432 return /Linux/.test(navigator.userAgent); |
433 }, | 433 }, |
434 | |
435 /** Whether this uses the views toolkit or not. */ | |
436 get isViews() { | |
437 return typeof chrome.getVariableValue == 'function' && | |
438 /views/.test(chrome.getVariableValue('toolkit')); | |
439 }, | |
440 }; | 434 }; |
441 }(); | 435 }(); |
OLD | NEW |