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

Side by Side Diff: components/crash/core/browser/resources/crashes.html

Issue 2325713002: Manual crash uploads for mac and win (Closed)
Patch Set: Created 4 years, 3 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 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 5
6 <if expr="is_ios"> 6 <if expr="is_ios">
7 <!-- The viewport tag forces the page to correctly resize when starting in 7 <!-- The viewport tag forces the page to correctly resize when starting in
8 landscape mode; this handles an iOS resizing bug. --> 8 landscape mode; this handles an iOS resizing bug. -->
9 <meta name="viewport" 9 <meta name="viewport"
10 content="width=device-width, initial-scale=1, maximum-scale=1"/> 10 content="width=device-width, initial-scale=1, maximum-scale=1"/>
(...skipping 10 matching lines...) Expand all
21 <script src="chrome://resources/js/util.js"></script> 21 <script src="chrome://resources/js/util.js"></script>
22 <script src="chrome://crashes/strings.js"></script> 22 <script src="chrome://crashes/strings.js"></script>
23 <script src="chrome://crashes/crashes.js"></script> 23 <script src="chrome://crashes/crashes.js"></script>
24 </head> 24 </head>
25 <body> 25 <body>
26 <header><h1 i18n-content="crashesTitle"></h1></header> 26 <header><h1 i18n-content="crashesTitle"></h1></header>
27 <div id="crashUploadStatus" hidden> 27 <div id="crashUploadStatus" hidden>
28 <a is="action-link" role="button" id="uploadCrashes" 28 <a is="action-link" role="button" id="uploadCrashes"
29 i18n-content="uploadCrashesLinkText"></a> 29 i18n-content="uploadCrashesLinkText"></a>
30 </div> 30 </div>
31 <div id="enabledMode">
32 <h2 id="countBanner"></h2>
33 <div id="crashList"></div>
34 <p id="noCrashes" i18n-content="noCrashesMessage" hidden></p>
35 </div>
36 <div id="disabledMode" hidden> 31 <div id="disabledMode" hidden>
37 <h2 i18n-content="disabledHeader"></h2> 32 <h2 i18n-content="disabledHeader"></h2>
38 <p i18n-values=".innerHTML:disabledMessage"></p> 33 <p i18n-values=".innerHTML:disabledMessage"></p>
39 </div> 34 </div>
35 <div id="crashesInfo">
36 <h2 id="countBanner"></h2>
37 <div id="crashList"></div>
38 <p id="noCrashes" i18n-content="noCrashesMessage" hidden></p>
39 </div>
40 <script src="chrome://resources/js/i18n_template.js"></script> 40 <script src="chrome://resources/js/i18n_template.js"></script>
41 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 41 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
42 </body> 42 </body>
43 </html> 43 </html>
OLDNEW
« no previous file with comments | « components/crash/core/browser/crashes_ui_util.cc ('k') | components/crash/core/browser/resources/crashes.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698