| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/html/assert.html"> | 3 <link rel="import" href="chrome://resources/html/assert.html"> |
| 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> |
| 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 6 <link rel="import" href="android_apps_browser_proxy.html"> | 7 <link rel="import" href="android_apps_browser_proxy.html"> |
| 7 <link rel="import" href="../i18n_setup.html"> | 8 <link rel="import" href="../i18n_setup.html"> |
| 8 <link rel="import" href="../prefs/prefs_behavior.html"> | 9 <link rel="import" href="../prefs/prefs_behavior.html"> |
| 9 <link rel="import" href="../settings_shared_css.html"> | 10 <link rel="import" href="../settings_shared_css.html"> |
| 10 | 11 |
| 11 <dom-module id="settings-android-apps-subpage"> | 12 <dom-module id="settings-android-apps-subpage"> |
| 12 <template> | 13 <template> |
| 13 <style include="settings-shared"></style> | 14 <style include="settings-shared"></style> |
| 14 | 15 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 <paper-button class="action-button" | 47 <paper-button class="action-button" |
| 47 on-tap="onConfirmDisableDialogConfirm_"> | 48 on-tap="onConfirmDisableDialogConfirm_"> |
| 48 $i18n{androidAppsDisableDialogRemove} | 49 $i18n{androidAppsDisableDialogRemove} |
| 49 </paper-button> | 50 </paper-button> |
| 50 </div> | 51 </div> |
| 51 </dialog> | 52 </dialog> |
| 52 | 53 |
| 53 </template> | 54 </template> |
| 54 <script src="android_apps_subpage.js"></script> | 55 <script src="android_apps_subpage.js"></script> |
| 55 </dom-module> | 56 </dom-module> |
| OLD | NEW |