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

Side by Side Diff: chromecast/app/resources/shell_devtools_discovery_page.html

Issue 638803002: Reorganizes Chromecast code to better reflect functional dependencies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: extra DEPS: chromecast/crash/android --> chromecast/common Created 6 years, 2 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 | « chromecast/app/resources/resource_ids ('k') | chromecast/app/resources/shell_resources.grd » ('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 <title>Cast shell remote debugging</title> 3 <title>Cast shell remote debugging</title>
4 <style> 4 <style>
5 </style> 5 </style>
6 6
7 <script> 7 <script>
8 function onLoad() { 8 function onLoad() {
9 var tabs_list_request = new XMLHttpRequest(); 9 var tabs_list_request = new XMLHttpRequest();
10 tabs_list_request.open("GET", "/json/list?t=" + new Date().getTime(), true); 10 tabs_list_request.open("GET", "/json/list?t=" + new Date().getTime(), true);
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 document.getElementById("items").appendChild(item); 48 document.getElementById("items").appendChild(item);
49 } 49 }
50 </script> 50 </script>
51 </head> 51 </head>
52 <body onload='onLoad()'> 52 <body onload='onLoad()'>
53 <div id='caption'>Inspectable WebContents</div> 53 <div id='caption'>Inspectable WebContents</div>
54 <div id='items'></div> 54 <div id='items'></div>
55 </body> 55 </body>
56 </html> 56 </html>
OLDNEW
« no previous file with comments | « chromecast/app/resources/resource_ids ('k') | chromecast/app/resources/shell_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698