| Index: chrome/browser/resources/settings/internet_page/internet_detail_page.js
 | 
| diff --git a/chrome/browser/resources/settings/internet_page/internet_detail_page.js b/chrome/browser/resources/settings/internet_page/internet_detail_page.js
 | 
| index f696cb5b995f194d279f4e151180294955f1abd1..ce8553d223b4e417441cc36678ed3c30df158512 100644
 | 
| --- a/chrome/browser/resources/settings/internet_page/internet_detail_page.js
 | 
| +++ b/chrome/browser/resources/settings/internet_page/internet_detail_page.js
 | 
| @@ -242,8 +242,8 @@ Polymer({
 | 
|        button.focus();
 | 
|      }
 | 
|  
 | 
| -    if (this.shoudlShowConfigureWhenNetworkLoaded_
 | 
| -        && this.networkProperties.Tether) {
 | 
| +    if (this.shoudlShowConfigureWhenNetworkLoaded_ &&
 | 
| +        this.networkProperties.Tether) {
 | 
|        this.showTetherDialog_();
 | 
|      }
 | 
|    },
 | 
| @@ -567,9 +567,10 @@ Polymer({
 | 
|    /** @private */
 | 
|    onTetherConnect_: function() {
 | 
|      this.getTetherDialog_().close();
 | 
| -    this.fire('network-connect',
 | 
| -        {networkProperties: this.networkProperties,
 | 
| -         bypassConnectionDialog: true});
 | 
| +    this.fire('network-connect', {
 | 
| +      networkProperties: this.networkProperties,
 | 
| +      bypassConnectionDialog: true
 | 
| +    });
 | 
|    },
 | 
|  
 | 
|    /** @private */
 | 
| @@ -974,8 +975,7 @@ Polymer({
 | 
|     * @private
 | 
|     */
 | 
|    showCellularSim_: function(networkProperties) {
 | 
| -    if (networkProperties.Type != 'Cellular' ||
 | 
| -        !networkProperties.Cellular) {
 | 
| +    if (networkProperties.Type != 'Cellular' || !networkProperties.Cellular) {
 | 
|        return false;
 | 
|      }
 | 
|      return networkProperties.Cellular.Family == 'GSM';
 | 
| 
 |