| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/html/util.html"> | 5 <link rel="import" href="chrome://resources/html/util.html"> |
| 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 6 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11
y-keys.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11
y-keys.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 9 <link rel="import" href="../i18n_setup.html"> | 10 <link rel="import" href="../i18n_setup.html"> |
| 10 <link rel="import" href="../icons.html"> | 11 <link rel="import" href="../icons.html"> |
| 11 <link rel="import" href="camera.html"> | 12 <link rel="import" href="camera.html"> |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 </div> | 143 </div> |
| 143 <settings-camera id="camera" | 144 <settings-camera id="camera" |
| 144 camera-active="[[isCameraActive_(cameraPresent_, selectedItem_)]]" | 145 camera-active="[[isCameraActive_(cameraPresent_, selectedItem_)]]" |
| 145 on-phototaken="onPhotoTaken_"> | 146 on-phototaken="onPhotoTaken_"> |
| 146 </settings-camera> | 147 </settings-camera> |
| 147 </div> | 148 </div> |
| 148 </div> | 149 </div> |
| 149 </template> | 150 </template> |
| 150 <script src="change_picture.js"></script> | 151 <script src="change_picture.js"></script> |
| 151 </dom-module> | 152 </dom-module> |
| OLD | NEW |