| Index: chrome/browser/resources/settings/internet_page/network_siminfo.html | 
| diff --git a/chrome/browser/resources/settings/internet_page/network_siminfo.html b/chrome/browser/resources/settings/internet_page/network_siminfo.html | 
| index 1826478c532987fc31b7e37a1b56161b58e045f4..b88b5f57c5f6381219243e3b511db5a937876310 100644 | 
| --- a/chrome/browser/resources/settings/internet_page/network_siminfo.html | 
| +++ b/chrome/browser/resources/settings/internet_page/network_siminfo.html | 
| @@ -1,8 +1,8 @@ | 
| <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 
| <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.html"> | 
| +<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html"> | 
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-checkbox.html"> | 
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dialog.html"> | 
| -<link rel="import" href="chrome://resources/cr_elements/v1_0/cr_button/cr_button.html"> | 
| <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.html"> | 
| <link rel="import" href="chrome://resources/cr_elements/v1_0/network/cr_onc_types.html"> | 
| <link rel="import" href="network_property_list.html"> | 
| @@ -24,7 +24,7 @@ | 
| <!-- SIM locked --> | 
| <iron-icon icon="lock"></iron-icon> | 
| <span>SIM card is locked.</span> | 
| -          <cr-button on-click="unlockPin_">Unlock</cr-button> | 
| +          <paper-button on-tap="unlockPin_">Unlock</paper-button> | 
| </div> | 
| <div class="layout vertical" | 
| hidden$="[[isSimLocked_(networkState)]]"> | 
| @@ -37,7 +37,7 @@ | 
| <div class="layout horizontal center" | 
| hidden$="[[!networkState.Cellular.SIMLockStatus.LockEnabled]]"> | 
| <!-- SIM lock enabled --> | 
| -            <cr-button on-click="onChangePin_">Change PIN</cr-button> | 
| +            <paper-button on-tap="onChangePin_">Change PIN</paper-button> | 
| </div> | 
| </div> | 
| </div> | 
| @@ -53,7 +53,7 @@ | 
| <cr-input id="enterPin" class="pin" no-label-float | 
| label="Enter PIN"> | 
| </cr-input> | 
| -            <cr-button on-click="sendEnterPin_">Enter</cr-button> | 
| +            <paper-button on-tap="sendEnterPin_">Enter</paper-button> | 
| </div> | 
| </div> | 
| <div class="layout horizontal"> | 
| @@ -82,7 +82,7 @@ | 
| label="Re-enter new PIN"> | 
| </cr-input> | 
| </div> | 
| -          <cr-button on-click="sendChangePin_">Change</cr-button> | 
| +          <paper-button on-tap="sendChangePin_">Change</paper-button> | 
| </div> | 
| <div class="layout horizontal"> | 
| <span class="error" hidden$="[[!showError_(error)]]" | 
| @@ -102,7 +102,7 @@ | 
| <cr-input id="unlockPin" class="pin" no-label-float | 
| label="Enter PIN"> | 
| </cr-input> | 
| -          <cr-button on-click="sendUnlockPin_">Unlock</cr-button> | 
| +          <paper-button on-tap="sendUnlockPin_">Unlock</paper-button> | 
| </div> | 
| <div class="layout horizontal"> | 
| <span class="error" hidden$="[[!showError_(error)]]" | 
| @@ -135,7 +135,7 @@ | 
| label="Re-enter PIN"> | 
| </cr-input> | 
| </div> | 
| -              <cr-button on-click="sendUnlockPuk_">Unlock</cr-button> | 
| +              <paper-button on-tap="sendUnlockPuk_">Unlock</paper-button> | 
| </div> | 
| </div> | 
| <div class="flex"></div>. | 
|  |