summaryrefslogtreecommitdiffstats
path: root/ios/chrome/app/resources/omaha/omaha.html
blob: 3f30fdf438c46b086c2f99091dc8e88d9051a40a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE HTML>
<html i18n-values="dir:textdirection;">
<head>
  <meta name="viewport"
    content="width=device-width, initial-scale=1, maximum-scale=1"/>
  <meta charset="utf-8"/>
  <title>Omaha</title>
  <link rel="stylesheet" href="omaha.css">
  <script src="chrome://resources/js/ios/web_ui.js"></script>
  <script src="chrome://resources/js/load_time_data.js"></script>
  <script src="chrome://resources/js/util.js"></script>
  <script src="chrome://omaha/omaha.js"></script>
  <script src="chrome://omaha/strings.js"></script>
</head>
<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
  <div id="outer">
    <table id="inner" cellpadding="0" cellspacing="0" border="0">
      <tr id="last_sent_time-tr">
        <td class="label">Last Sent Time</td>
        <td class="value" id="last_sent_time"></td>
      </tr>
      <tr id="next_tries_time-tr">
        <td class="label">Next Tried Time</td>
        <td class="value" id="next_tries_time"></td>
      </tr>
      <tr id="current_ping_time-tr">
        <td class="label">Current Ping Time</td>
        <td class="value" id="current_ping_time"></td>
      </tr>
      <tr id="last_sent_version-tr">
        <td class="label">Last Sent Version</td>
        <td class="value" id="last_sent_version"></td>
      </tr>
      <tr id="number_of_tries-tr">
        <td class="label">Number of Tries</td>
        <td class="value" id="number_of_tries"></td>
      </tr>
      <tr id="timer_running-tr">
        <td class="label">Timer Running</td>
        <td class="value" id="timer_running"></td>
      </tr>
      <tr id="timer_current_delay-tr">
        <td class="label">Timer Current Delay</td>
        <td class="value" id="timer_current_delay"></td>
      </tr>
      <tr id="timer_desired_run_time-tr">
        <td class="label">Timer Desired Run Time</td>
        <td class="value" id="timer_desired_run_time"></td>
      </tr>
      <tr id="message-tr">
        <td class="label">Message</td>
        <td class="value" id="message"></td>
      </tr>
    </table>
  </div>
  <script src="chrome://resources/js/i18n_template.js"></script>
</body>
</html>