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

Side by Side Diff: chrome/browser/resources/offline_pages/offline_internals.html

Issue 2069933002: [Offline pages] Extract internals page interaction with browser to a proxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@i2
Patch Set: Compiling and working Created 4 years, 6 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 lang="en" dir="ltr"> 2 <html lang="en" dir="ltr">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Offline Internals</title> 5 <title>Offline Internals</title>
6 <meta name="viewport" content="width=device-width"> 6 <meta name="viewport" content="width=device-width">
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
8 <link rel="stylesheet" href="offline_internals.css"> 8 <link rel="stylesheet" href="offline_internals.css">
9 9
10 <link rel="import" href="chrome://resources/html/cr.html"> 10 <link rel="import" href="chrome://resources/html/cr.html">
11 <script src="chrome://resources/js/load_time_data.js"></script> 11 <script src="chrome://resources/js/load_time_data.js"></script>
12 <script src="chrome://resources/js/util.js"></script> 12 <script src="chrome://resources/js/util.js"></script>
13 <script src="strings.js"></script> 13 <script src="strings.js"></script>
14 <script src="offline_internals_browser_proxy.js"></script>
14 <script src="offline_internals.js"></script> 15 <script src="offline_internals.js"></script>
15 </head> 16 </head>
16 <body> 17 <body>
17 <h1>Offline Internals</h1> 18 <h1>Offline Internals</h1>
18 <div> 19 <div>
19 <div id="current-status"></div> 20 <div id="current-status"></div>
20 <button id="refresh">Refresh page</button> 21 <button id="refresh">Refresh page</button>
21 <button id="download">Dump</button> 22 <button id="download">Dump</button>
22 </div> 23 </div>
23 24
(...skipping 21 matching lines...) Expand all
45 <tr> 46 <tr>
46 <th>URL</th> 47 <th>URL</th>
47 <th>Created Timestamp</th> 48 <th>Created Timestamp</th>
48 <th>Status</th> 49 <th>Status</th>
49 </tr> 50 </tr>
50 </thead> 51 </thead>
51 <tbody id="request-queue"> </tbody> 52 <tbody id="request-queue"> </tbody>
52 </table> 53 </table>
53 </body> 54 </body>
54 </html> 55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698