summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/resources/ntp_android/ntp_android.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/chrome/browser/resources/ntp_android/ntp_android.js b/chrome/browser/resources/ntp_android/ntp_android.js
index beada23..8d1126b 100644
--- a/chrome/browser/resources/ntp_android/ntp_android.js
+++ b/chrome/browser/resources/ntp_android/ntp_android.js
@@ -1743,19 +1743,19 @@ cr.define('ntp', function() {
clientName = client.name;
var iconStyle;
- if (windows[0].deviceType == 'win' ||
- windows[0].deviceType == 'macosx' ||
- windows[0].deviceType == 'linux' ||
- windows[0].deviceType == 'chromeos' ||
- windows[0].deviceType == 'other') {
+ var deviceType = client.deviceType;
+ if (deviceType == 'win' ||
+ deviceType == 'macosx' ||
+ deviceType == 'linux' ||
+ deviceType == 'chromeos' ||
+ deviceType == 'other') {
iconStyle = 'laptop';
- } else if (windows[0].deviceType == 'phone') {
+ } else if (deviceType == 'phone') {
iconStyle = 'phone';
- } else if (windows[0].deviceType == 'tablet') {
+ } else if (deviceType == 'tablet') {
iconStyle = 'tablet';
} else {
- console.error(
- 'Unknown sync device type found: ', windows[0].deviceType);
+ console.error('Unknown sync device type found: ', deviceType);
iconStyle = 'laptop';
}
var headerList = [{