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

Side by Side Diff: content/browser/resources/service_worker/serviceworker_internals.html

Issue 296463005: Push API: fire push event from chrome://serviceworker-internals/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 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
« no previous file with comments | « no previous file | content/browser/resources/service_worker/serviceworker_internals.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>ServiceWorker</title> 5 <title>ServiceWorker</title>
6 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 6 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
7 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 7 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
8 <link rel="stylesheet" href="serviceworker_internals.css"> 8 <link rel="stylesheet" href="serviceworker_internals.css">
9 </head> 9 </head>
10 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 10 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
(...skipping 30 matching lines...) Expand all
41 jsvalues=".partition_id:$partition_id;.version_id:$this.version_id" 41 jsvalues=".partition_id:$partition_id;.version_id:$this.version_id"
42 rows="3" cols="120" readonly jscontent="$this.log"></textarea> 42 rows="3" cols="120" readonly jscontent="$this.log"></textarea>
43 </div> 43 </div>
44 <div class="worker-controls"> 44 <div class="worker-controls">
45 <button href="#" class="stop" 45 <button href="#" class="stop"
46 jsvalues=".cmdArgs:{partition_id:$partition_id,version_id:version_id }" 46 jsvalues=".cmdArgs:{partition_id:$partition_id,version_id:version_id }"
47 jsdisplay="$this.running_status == 'RUNNING'">Stop</button> 47 jsdisplay="$this.running_status == 'RUNNING'">Stop</button>
48 <button href="#" class="sync" 48 <button href="#" class="sync"
49 jsvalues=".cmdArgs:{partition_id:$partition_id,version_id:version_id }" 49 jsvalues=".cmdArgs:{partition_id:$partition_id,version_id:version_id }"
50 jsdisplay="$this.running_status == 'RUNNING'">Sync</button> 50 jsdisplay="$this.running_status == 'RUNNING'">Sync</button>
51 <button href="#" class="push"
52 jsvalues=".cmdArgs:{partition_id:$partition_id,version_id:version_id }"
53 jsdisplay="$this.running_status == 'RUNNING'">Push</button>
51 <button href="#" class="inspect" 54 <button href="#" class="inspect"
52 jsvalues=".cmdArgs:{process_id:process_id,devtools_agent_route_id:de vtools_agent_route_id}" 55 jsvalues=".cmdArgs:{process_id:process_id,devtools_agent_route_id:de vtools_agent_route_id}"
53 jsdisplay="$this.running_status == 'RUNNING'">Inspect</button> 56 jsdisplay="$this.running_status == 'RUNNING'">Inspect</button>
54 <span class="operation-status" style="display: none">Running...</span> 57 <span class="operation-status" style="display: none">Running...</span>
55 </div> 58 </div>
56 </div> 59 </div>
57 <div id="serviceworker-registration-template" 60 <div id="serviceworker-registration-template"
58 class="serviceworker-registration"> 61 class="serviceworker-registration">
59 <div class="serviceworker-scope"> 62 <div class="serviceworker-scope">
60 <span>Scope:</span> 63 <span>Scope:</span>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 </div> 132 </div>
130 <script src="chrome://resources/js/util.js"></script> 133 <script src="chrome://resources/js/util.js"></script>
131 <script src="chrome://resources/js/cr.js"></script> 134 <script src="chrome://resources/js/cr.js"></script>
132 <script src="serviceworker_internals.js"></script> 135 <script src="serviceworker_internals.js"></script>
133 <script src="chrome://resources/js/load_time_data.js"></script> 136 <script src="chrome://resources/js/load_time_data.js"></script>
134 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 137 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
135 <script src="strings.js"></script> 138 <script src="strings.js"></script>
136 <script src="chrome://resources/js/i18n_template2.js"></script> 139 <script src="chrome://resources/js/i18n_template2.js"></script>
137 </body> 140 </body>
138 </html> 141 </html>
OLDNEW
« no previous file with comments | « no previous file | content/browser/resources/service_worker/serviceworker_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698