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

Side by Side Diff: chrome/browser/resources/options/chromeos/storage_manager.html

Issue 2111043003: Storage manager: Show the disk usage of other users. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Set a fake size. Created 4 years, 5 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 <div id="storageManagerPage" class="page" hidden> 1 <div id="storageManagerPage" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="storageManagerPage"></h1> 3 <h1 i18n-content="storageManagerPage"></h1>
4 4
5 <div id="storage-manager-message-low-space" 5 <div id="storage-manager-message-low-space"
6 class="storage-manager-message-area"> 6 class="storage-manager-message-area">
7 <div class="storage-manager-message-title"> 7 <div class="storage-manager-message-title">
8 <img src="space_low.svg"></img> 8 <img src="space_low.svg"></img>
9 <span i18n-content="storageLowMessageTitle"></span> 9 <span i18n-content="storageLowMessageTitle"></span>
10 </div> 10 </div>
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 i18n-content="storageSizeCalculating"></span> 53 i18n-content="storageSizeCalculating"></span>
54 </div> 54 </div>
55 <div class="storage-manager-subitem"> 55 <div class="storage-manager-subitem">
56 <a is="action-link" 56 <a is="action-link"
57 id="storage-manager-label-browsing-data" 57 id="storage-manager-label-browsing-data"
58 i18n-content="storageSubitemLabelBrowsingData"></a> 58 i18n-content="storageSubitemLabelBrowsingData"></a>
59 <span id="storage-manager-size-browsing-data" 59 <span id="storage-manager-size-browsing-data"
60 class="storage-manager-item-size" 60 class="storage-manager-item-size"
61 i18n-content="storageSizeCalculating"></span> 61 i18n-content="storageSizeCalculating"></span>
62 </div> 62 </div>
63 <div class="storage-manager-subitem">
64 <a is="action-link" disabled
65 id="storage-manager-label-other-users"
66 i18n-content="storageSubitemLabelOtherUsers"></a>
67 <span id="storage-manager-size-other-users"
68 class="storage-manager-item-size"
69 i18n-content="storageSizeCalculating"></span>
70 </div>
63 <div id="storage-manager-item-arc" 71 <div id="storage-manager-item-arc"
64 class="storage-manager-subitem" hidden> 72 class="storage-manager-subitem" hidden>
65 <a is="action-link" 73 <a is="action-link"
66 id="storage-manager-label-arc" 74 id="storage-manager-label-arc"
67 i18n-content="storageSubitemLabelArc"></a> 75 i18n-content="storageSubitemLabelArc"></a>
68 <span id="storage-manager-size-arc" 76 <span id="storage-manager-size-arc"
69 class="storage-manager-item-size" 77 class="storage-manager-item-size"
70 i18n-content="storageSizeCalculating"></span> 78 i18n-content="storageSizeCalculating"></span>
71 </div> 79 </div>
72 </div> 80 </div>
73 <div class="storage-manager-section"> 81 <div class="storage-manager-section">
74 <div class="storage-manager-item"> 82 <div class="storage-manager-item">
75 <span i18n-content="storageItemLabelAvailable"></span> 83 <span i18n-content="storageItemLabelAvailable"></span>
76 <span id="storage-manager-size-available" 84 <span id="storage-manager-size-available"
77 class="storage-manager-item-size"></span> 85 class="storage-manager-item-size"></span>
78 </div> 86 </div>
79 </div> 87 </div>
80 </div> 88 </div>
81 89
82 <div class="action-area"> 90 <div class="action-area">
83 <div class="button-strip"> 91 <div class="button-strip">
84 <button id="storage-confirm" class="default-button" 92 <button id="storage-confirm" class="default-button"
85 i18n-content="done"> 93 i18n-content="done">
86 </button> 94 </button>
87 </div> 95 </div>
88 </div> 96 </div>
89 </div> 97 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698