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

Unified 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: Fix comment indent in JS 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/offline_pages/offline_internals.html
diff --git a/chrome/browser/resources/offline_pages/offline_internals.html b/chrome/browser/resources/offline_pages/offline_internals.html
index e2d53559382891664756e15a775d8efa38a3842e..a90859c8e903f51e61f343c2f11e8f556bc7638a 100644
--- a/chrome/browser/resources/offline_pages/offline_internals.html
+++ b/chrome/browser/resources/offline_pages/offline_internals.html
@@ -60,7 +60,7 @@
</thead>
<tbody id="stored-pages"> </tbody>
</table>
- <div id="page-actions-info"></div>
+ <div id="page-actions-info" class="dump"></div>
<h2>Request Queue</h2>
<div>
@@ -78,7 +78,7 @@
</thead>
<tbody id="request-queue"> </tbody>
</table>
- <div id="request-queue-actions-info"></div>
+ <div id="request-queue-actions-info" class="dump"></div>
<input id="url" type="url"
placeholder="http://www.url1.com, http://www.url2.com, ...">
<button id="add-to-queue">Load in background</button>
@@ -90,6 +90,17 @@
<button id="schedule-nwake">Schedule NWake</button>
<button id="cancel-nwake">Cancel NWake</button>
</div>
+ <div>
+ <input id="generate-urls" type="text"
+ placeholder="http://www.url1.com, http://www.url2.com, ...">
+ <button id="generate-page-bundle">Generate Page Bundle</button>
+ </div>
+ <div>
+ <input id="operation-name" type="text"
+ placeholder="operations/1234-5678">
+ <button id="get-operation">Get Operation</button>
+ </div>
</div>
+ <div id="prefetch-actions-info" class="dump"></div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698