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

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

Issue 1617143002: Remove "push" button from service worker internals UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 <div> 42 <div>
43 <div>Log:</div> 43 <div>Log:</div>
44 <textarea class="serviceworker-log" 44 <textarea class="serviceworker-log"
45 jsvalues=".partition_id:$partition_id;.version_id:$this.version_id" 45 jsvalues=".partition_id:$partition_id;.version_id:$this.version_id"
46 rows="3" cols="120" readonly jscontent="$this.log"></textarea> 46 rows="3" cols="120" readonly jscontent="$this.log"></textarea>
47 </div> 47 </div>
48 <div class="worker-controls"> 48 <div class="worker-controls">
49 <button href="#" class="stop" 49 <button href="#" class="stop"
50 jsvalues=".cmdArgs:{partition_id:$partition_id,version_id:version_id }" 50 jsvalues=".cmdArgs:{partition_id:$partition_id,version_id:version_id }"
51 jsdisplay="$this.running_status == 'RUNNING'">Stop</button> 51 jsdisplay="$this.running_status == 'RUNNING'">Stop</button>
52 <button href="#" class="push"
53 jsvalues=".cmdArgs:{partition_id:$partition_id,version_id:version_id }"
54 jsdisplay="$this.running_status == 'RUNNING'">Push</button>
55 <button href="#" class="inspect" 52 <button href="#" class="inspect"
56 jsvalues=".cmdArgs:{process_id:process_id,devtools_agent_route_id:de vtools_agent_route_id}" 53 jsvalues=".cmdArgs:{process_id:process_id,devtools_agent_route_id:de vtools_agent_route_id}"
57 jsdisplay="$this.running_status == 'RUNNING'">Inspect</button> 54 jsdisplay="$this.running_status == 'RUNNING'">Inspect</button>
58 <span class="operation-status" style="display: none">Running...</span> 55 <span class="operation-status" style="display: none">Running...</span>
59 </div> 56 </div>
60 </div> 57 </div>
61 <div id="serviceworker-registration-template" 58 <div id="serviceworker-registration-template"
62 class="serviceworker-registration"> 59 class="serviceworker-registration">
63 <div class="serviceworker-scope"> 60 <div class="serviceworker-scope">
64 <span>Scope:</span> 61 <span>Scope:</span>
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 </div> 131 </div>
135 <script src="chrome://resources/js/util.js"></script> 132 <script src="chrome://resources/js/util.js"></script>
136 <script src="chrome://resources/js/cr.js"></script> 133 <script src="chrome://resources/js/cr.js"></script>
137 <script src="serviceworker_internals.js"></script> 134 <script src="serviceworker_internals.js"></script>
138 <script src="chrome://resources/js/load_time_data.js"></script> 135 <script src="chrome://resources/js/load_time_data.js"></script>
139 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 136 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
140 <script src="strings.js"></script> 137 <script src="strings.js"></script>
141 <script src="chrome://resources/js/i18n_template.js"></script> 138 <script src="chrome://resources/js/i18n_template.js"></script>
142 </body> 139 </body>
143 </html> 140 </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