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

Side by Side Diff: chrome/browser/resources/settings/device_page/device_page.html

Issue 2517083002: Enable MD storage manager by default. (Closed)
Patch Set: Rebase Created 4 years 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/i18n_behavior.html"> 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
7 <link rel="import" href="/device_page/device_page_browser_proxy.html"> 7 <link rel="import" href="/device_page/device_page_browser_proxy.html">
8 <link rel="import" href="/device_page/display.html"> 8 <link rel="import" href="/device_page/display.html">
9 <link rel="import" href="/device_page/keyboard.html"> 9 <link rel="import" href="/device_page/keyboard.html">
10 <link rel="import" href="/device_page/pointers.html"> 10 <link rel="import" href="/device_page/pointers.html">
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 <div class="middle">$i18n{stylusTitle}</div> 44 <div class="middle">$i18n{stylusTitle}</div>
45 <button class="subpage-arrow" is="paper-icon-button-light"></button> 45 <button class="subpage-arrow" is="paper-icon-button-light"></button>
46 </div> 46 </div>
47 </template> 47 </template>
48 <div id="displayRow" class="settings-box" on-tap="onDisplayTap_" 48 <div id="displayRow" class="settings-box" on-tap="onDisplayTap_"
49 actionable> 49 actionable>
50 <iron-icon icon="settings:desktop-windows"></iron-icon> 50 <iron-icon icon="settings:desktop-windows"></iron-icon>
51 <div class="middle">$i18n{displayTitle}</div> 51 <div class="middle">$i18n{displayTitle}</div>
52 <button class="subpage-arrow" is="paper-icon-button-light"></button> 52 <button class="subpage-arrow" is="paper-icon-button-light"></button>
53 </div> 53 </div>
54 <template is="dom-if" if="[[showStorageManager_]]"> 54 <div id="storageRow" class="settings-box" on-tap="onStorageTap_"
55 <div id="storageRow" class="settings-box" on-tap="onStorageTap_" 55 actionable>
56 actionable> 56 <iron-icon icon="settings:storage"></iron-icon>
57 <iron-icon icon="settings:storage"></iron-icon> 57 <div class="middle">$i18n{storageTitle}</div>
58 <div class="middle">$i18n{storageTitle}</div> 58 <button class="subpage-arrow" is="paper-icon-button-light"></button>
59 <button class="subpage-arrow" is="paper-icon-button-light"></button> 59 </div>
60 </div>
61 </template>
62 </neon-animatable> 60 </neon-animatable>
63 <template is="dom-if" route-path="/pointer-overlay"> 61 <template is="dom-if" route-path="/pointer-overlay">
64 <settings-subpage 62 <settings-subpage
65 associated-control="[[$$('#pointersRow')]]" 63 associated-control="[[$$('#pointersRow')]]"
66 page-title="[[getPointersTitle_(hasMouse_, hasTouchpad_)]]"> 64 page-title="[[getPointersTitle_(hasMouse_, hasTouchpad_)]]">
67 <settings-pointers prefs="{{prefs}}" 65 <settings-pointers prefs="{{prefs}}"
68 has-mouse="[[hasMouse_]]" has-touchpad="[[hasTouchpad_]]"> 66 has-mouse="[[hasMouse_]]" has-touchpad="[[hasTouchpad_]]">
69 </settings-pointers> 67 </settings-pointers>
70 </settings-subpage> 68 </settings-subpage>
71 </template> 69 </template>
(...skipping 13 matching lines...) Expand all
85 </settings-subpage> 83 </settings-subpage>
86 </template> 84 </template>
87 </template> 85 </template>
88 <template is="dom-if" route-path="/display"> 86 <template is="dom-if" route-path="/display">
89 <settings-subpage 87 <settings-subpage
90 associated-control="[[$$('#displayRow')]]" 88 associated-control="[[$$('#displayRow')]]"
91 page-title="$i18n{displayTitle}"> 89 page-title="$i18n{displayTitle}">
92 <settings-display></settings-display> 90 <settings-display></settings-display>
93 </settings-subpage> 91 </settings-subpage>
94 </template> 92 </template>
95 <template is="dom-if" if="[[showStorageManager_]]"> 93 <template is="dom-if" route-path="/storage">
96 <template is="dom-if" route-path="/storage"> 94 <settings-subpage
97 <settings-subpage 95 associated-control="[[$$('#storageRow')]]"
98 associated-control="[[$$('#storageRow')]]" 96 page-title="$i18n{storageTitle}">
99 page-title="$i18n{storageTitle}"> 97 <settings-storage></settings-storage>
100 <settings-storage></settings-storage> 98 </settings-subpage>
101 </settings-subpage>
102 </template>
103 </template> 99 </template>
104 </settings-animated-pages> 100 </settings-animated-pages>
105 </template> 101 </template>
106 <script src="device_page.js"></script> 102 <script src="device_page.js"></script>
107 </dom-module> 103 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/resources/settings/device_page/device_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698