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

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

Powered by Google App Engine
This is Rietveld 408576698