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

Side by Side Diff: chrome/browser/resources/options/certificate_manager.html

Issue 6592079: [ChromeOS] Add strings and UI placeholder for hardware-backed key. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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 | Annotate | Revision Log
OLDNEW
1 <div class="page hidden" id="certificateManagerPage"> 1 <div class="page hidden" id="certificateManagerPage">
2 <h1 i18n-content="certificateManagerPage"></h1> 2 <h1 i18n-content="certificateManagerPage"></h1>
3 3
4 <!-- Navigation tabs --> 4 <!-- Navigation tabs -->
5 <div class="subpages-nav-tabs"> 5 <div class="subpages-nav-tabs">
6 <span id="personal-certs-nav-tab" class="tab" 6 <span id="personal-certs-nav-tab" class="tab"
7 tab-contents="personalCertsTab"> 7 tab-contents="personalCertsTab">
8 <span class="tab-label" 8 <span class="tab-label"
9 i18n-content="personalCertsTabTitle"></span> 9 i18n-content="personalCertsTabTitle"></span>
10 <span class="active-tab-label" 10 <span class="active-tab-label"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 <tr><td> 43 <tr><td>
44 <button id="personalCertsTab-view" i18n-content="view_certificate" 44 <button id="personalCertsTab-view" i18n-content="view_certificate"
45 disabled></button> 45 disabled></button>
46 <!-- TODO(mattm): 46 <!-- TODO(mattm):
47 <button id="personalCertsTab-backup-all" 47 <button id="personalCertsTab-backup-all"
48 i18n-content="export_all_certificates" 48 i18n-content="export_all_certificates"
49 disabled></button> 49 disabled></button>
50 --> 50 -->
51 <button id="personalCertsTab-import" i18n-content="import_certificate" 51 <button id="personalCertsTab-import" i18n-content="import_certificate"
52 ></button> 52 ></button>
53 <if expr="pp_ifdef('chromeos')">
54 <button id="personalCertsTab-import-and-bind"
55 i18n-content="importAndBindCertificate" disabled></button>
56 </if>
53 <button id="personalCertsTab-backup" i18n-content="export_certificate" 57 <button id="personalCertsTab-backup" i18n-content="export_certificate"
54 disabled></button> 58 disabled></button>
55 <button id="personalCertsTab-delete" i18n-content="delete_certificate" 59 <button id="personalCertsTab-delete" i18n-content="delete_certificate"
56 disabled></button> 60 disabled></button>
57 </td></tr> 61 </td></tr>
58 </table> 62 </table>
59 </div> 63 </div>
60 64
61 <div id="serverCertsTab" class="subpages-tab-contents"> 65 <div id="serverCertsTab" class="subpages-tab-contents">
62 <table class="certificate-tree-table"> 66 <table class="certificate-tree-table">
63 <tr><td> 67 <tr><td>
64 <span i18n-content="serverCertsTabDescription"></span> 68 <span i18n-content="serverCertsTabDescription"></span>
65 </td></tr> 69 </td></tr>
66 <tr><td> 70 <tr><td>
67 <tree id="serverCertsTab-tree" class="certificate-tree"></tree> 71 <tree id="serverCertsTab-tree" class="certificate-tree"></tree>
68 </td></tr> 72 </td></tr>
69 <tr><td> 73 <tr><td>
70 <button id="serverCertsTab-view" i18n-content="view_certificate" 74 <button id="serverCertsTab-view" i18n-content="view_certificate"
71 disabled></button> 75 disabled></button>
72 <!-- TODO(mattm): 76 <!-- TODO(mattm):
73 <button id="serverCertsTab-edit" i18n-content="edit_certificate" 77 <button id="serverCertsTab-edit" i18n-content="edit_certificate"
74 disabled></button> 78 disabled></button>
75 --> 79 -->
76 <button id="serverCertsTab-import" i18n-content="import_certificate" 80 <button id="serverCertsTab-import" i18n-content="import_certificate"
77 ></button> 81 ></button>
82 <if expr="pp_ifdef('chromeos')">
83 <button id="serverCertsTab-import-and-bind"
84 i18n-content="importAndBindCertificate" disabled></button>
85 </if>
mattm 2011/03/01 22:24:11 Do we actually need this for server certs? Normal
xiyuan 2011/03/01 22:48:34 Removed. I am not sure whether we will need this o
78 <button id="serverCertsTab-export" i18n-content="export_certificate" 86 <button id="serverCertsTab-export" i18n-content="export_certificate"
79 disabled></button> 87 disabled></button>
80 <button id="serverCertsTab-delete" i18n-content="delete_certificate" 88 <button id="serverCertsTab-delete" i18n-content="delete_certificate"
81 disabled></button> 89 disabled></button>
82 </td></tr> 90 </td></tr>
83 </table> 91 </table>
84 </div> 92 </div>
85 93
86 <div id="caCertsTab" class="subpages-tab-contents"> 94 <div id="caCertsTab" class="subpages-tab-contents">
87 <table class="certificate-tree-table"> 95 <table class="certificate-tree-table">
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 <button id="otherCertsTab-export" i18n-content="export_certificate" 128 <button id="otherCertsTab-export" i18n-content="export_certificate"
121 disabled></button> 129 disabled></button>
122 <button id="otherCertsTab-delete" i18n-content="delete_certificate" 130 <button id="otherCertsTab-delete" i18n-content="delete_certificate"
123 disabled></button> 131 disabled></button>
124 </td></tr> 132 </td></tr>
125 </table> 133 </table>
126 </div> 134 </div>
127 135
128 </div> 136 </div>
129 137
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698