diff options
author | oshima@google.com <oshima@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-20 06:46:27 +0000 |
---|---|---|
committer | oshima@google.com <oshima@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-20 06:46:27 +0000 |
commit | 403168fec40ea732b36048cf2765722c141dd569 (patch) | |
tree | ba82be1dcd8e9ea799d7982de152dafbff4aaca2 | |
parent | 26a2948848ca470d2826a718397ea3f5602cc9c2 (diff) | |
download | chromium_src-403168fec40ea732b36048cf2765722c141dd569.zip chromium_src-403168fec40ea732b36048cf2765722c141dd569.tar.gz chromium_src-403168fec40ea732b36048cf2765722c141dd569.tar.bz2 |
Revert 101850 "Options: Use the more official cr.isViews intead of hand-checking."
This reverts commit ec959d1e368d72dc02bb6d02b8d4660786982fe4.
NavigateFromOtherTabToSingletonOptions
ChromeURLAfterDownload were failing with this on chromeos
TBR=jhawkins@chromium.org
BUG=none
TEST=chromeos bots cycle green
Review URL: http://codereview.chromium.org/7969012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101926 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/resources/options/options_page.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/options/options_page.js b/chrome/browser/resources/options/options_page.js index 73b081e..27d73a1 100644 --- a/chrome/browser/resources/options/options_page.js +++ b/chrome/browser/resources/options/options_page.js @@ -465,7 +465,7 @@ cr.define('options', function() { // Reverse the button strip for views. See the documentation of // reverseButtonStrip_() for an explanation of why this is necessary. - if (cr.isViews) + if (document.documentElement.toolkit == 'views') this.reverseButtonStrip_(overlay); overlay.tab = undefined; |