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

Side by Side Diff: ui/webui/resources/js/cr.js

Issue 1596273003: [Android] Use fallback icon if there is no large favicon on the history page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/ui/webui/large_icon_source.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 423
424 /** Whether this is on chromeOS or not. */ 424 /** Whether this is on chromeOS or not. */
425 get isChromeOS() { 425 get isChromeOS() {
426 return /CrOS/.test(navigator.userAgent); 426 return /CrOS/.test(navigator.userAgent);
427 }, 427 },
428 428
429 /** Whether this is on vanilla Linux (not chromeOS). */ 429 /** Whether this is on vanilla Linux (not chromeOS). */
430 get isLinux() { 430 get isLinux() {
431 return /Linux/.test(navigator.userAgent); 431 return /Linux/.test(navigator.userAgent);
432 }, 432 },
433
434 /** Whether this is on Android. */
435 get isAndroid() {
436 return /Android/.test(navigator.userAgent);
437 }
433 }; 438 };
434 }(); 439 }();
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/large_icon_source.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698