Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: chrome/browser/resources/settings/people_page/camera.html

Issue 2889333002: [MD settings] move polymer.html imports to top of file (Closed)
Patch Set: rerun Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/html/util.html"> 3 <link rel="import" href="chrome://resources/html/util.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html">
5 <link rel="import" href="../icons.html"> 6 <link rel="import" href="../icons.html">
6 <link rel="import" href="../settings_shared_css.html"> 7 <link rel="import" href="../settings_shared_css.html">
7 8
8 <dom-module id="settings-camera"> 9 <dom-module id="settings-camera">
9 <template> 10 <template>
10 <style include="settings-shared"> 11 <style include="settings-shared">
11 #perspectiveBox { 12 #perspectiveBox {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 </paper-icon-button> 80 </paper-icon-button>
80 <paper-icon-button id="takePhoto" tabindex="1" 81 <paper-icon-button id="takePhoto" tabindex="1"
81 icon="settings:camera-alt" title="$i18n{takePhoto}" 82 icon="settings:camera-alt" title="$i18n{takePhoto}"
82 on-tap="takePhoto" disabled="[[!cameraOnline_]]"> 83 on-tap="takePhoto" disabled="[[!cameraOnline_]]">
83 </paper-icon-button> 84 </paper-icon-button>
84 </div> 85 </div>
85 </div> 86 </div>
86 </template> 87 </template>
87 <script src="camera.js"></script> 88 <script src="camera.js"></script>
88 </dom-module> 89 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698