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

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

Issue 2928243002: Return operation name in prefetch request callback and add internal page hookup (Closed)
Patch Set: Rebase Created 3 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">
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 <tr> 53 <tr>
54 <th>&nbsp;</th> 54 <th>&nbsp;</th>
55 <th>URL</th> 55 <th>URL</th>
56 <th>Namespace</th> 56 <th>Namespace</th>
57 <th>Size (Kb)</th> 57 <th>Size (Kb)</th>
58 <th>Expired</th> 58 <th>Expired</th>
59 </tr> 59 </tr>
60 </thead> 60 </thead>
61 <tbody id="stored-pages"> </tbody> 61 <tbody id="stored-pages"> </tbody>
62 </table> 62 </table>
63 <div id="page-actions-info"></div> 63 <div id="page-actions-info" class="dump"></div>
64 64
65 <h2>Request Queue</h2> 65 <h2>Request Queue</h2>
66 <div> 66 <div>
67 <button id="delete-all-requests">Delete all</button> 67 <button id="delete-all-requests">Delete all</button>
68 <button id="delete-selected-requests">Delete selected</button> 68 <button id="delete-selected-requests">Delete selected</button>
69 </div> 69 </div>
70 <table class="request-queue-table"> 70 <table class="request-queue-table">
71 <thead> 71 <thead>
72 <tr> 72 <tr>
73 <th>&nbsp;</th> 73 <th>&nbsp;</th>
74 <th>URL</th> 74 <th>URL</th>
75 <th>Created Timestamp</th> 75 <th>Created Timestamp</th>
76 <th>Status</th> 76 <th>Status</th>
77 </tr> 77 </tr>
78 </thead> 78 </thead>
79 <tbody id="request-queue"> </tbody> 79 <tbody id="request-queue"> </tbody>
80 </table> 80 </table>
81 <div id="request-queue-actions-info"></div> 81 <div id="request-queue-actions-info" class="dump"></div>
82 <input id="url" type="url" 82 <input id="url" type="url"
83 placeholder="http://www.url1.com, http://www.url2.com, ..."> 83 placeholder="http://www.url1.com, http://www.url2.com, ...">
84 <button id="add-to-queue">Load in background</button> 84 <button id="add-to-queue">Load in background</button>
85 <div id="save-url-state"></div> 85 <div id="save-url-state"></div>
86 86
87 <h2>Prefetching</h2> 87 <h2>Prefetching</h2>
88 <div> 88 <div>
89 <div> 89 <div>
90 <button id="schedule-nwake">Schedule NWake</button> 90 <button id="schedule-nwake">Schedule NWake</button>
91 <button id="cancel-nwake">Cancel NWake</button> 91 <button id="cancel-nwake">Cancel NWake</button>
92 </div> 92 </div>
93 <div>
94 <input id="generate-urls" type="text"
95 placeholder="http://www.url1.com, http://www.url2.com, ...">
96 <button id="generate-page-bundle">Generate Page Bundle</button>
97 </div>
98 <div>
99 <input id="operation-name" type="text"
100 placeholder="operations/1234-5678">
101 <button id="get-operation">Get Operation</button>
102 </div>
93 </div> 103 </div>
104 <div id="prefetch-actions-info" class="dump"></div>
94 </body> 105 </body>
95 </html> 106 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698