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

Side by Side Diff: chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.html

Issue 191143002: Added process title to Process Monitor Sample Extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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 | chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="popup.js"></script> 3 <script src="popup.js"></script>
4 <style> 4 <style>
5 body { 5 body {
6 overflow: hidden; 6 overflow: hidden;
7 margin: 0px; 7 margin: 0px;
8 padding: 0px; 8 padding: 0px;
9 background: white; 9 background: white;
10 } 10 }
11 11
12 div:first-child { 12 div:first-child {
13 margin-top: 0px; 13 margin-top: 0px;
14 } 14 }
15 15
16 div, td { 16 div, td {
17 padding: 1px 3px; 17 padding: 1px 3px;
18 font-family: sans-serif; 18 font-family: sans-serif;
19 font-size: 10pt; 19 font-size: 10pt;
20 margin-top: 1px; 20 margin-top: 1px;
21 white-space: nowrap;
21 } 22 }
22 </style> 23 </style>
23 </head> 24 </head>
24 <body> 25 <body>
25 <div id="title"><b>Process Monitor</b></div> 26 <div id="title"><b>Process Monitor</b></div>
26 <div id="process-list"><i>Loading...</i></div> 27 <div id="process-list"><i>Loading...</i></div>
27 <div id="buttons"> 28 <div id="buttons">
28 <input type="button" value="End Process" id="killProcess" /> 29 <input type="button" value="End Process" id="killProcess" />
29 </div> 30 </div>
30 </div> 31 </div>
31 </body> 32 </body>
32 </html> 33 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698