| Index: chromecast/shell/browser/resources/shell_devtools_discovery_page.html
|
| diff --git a/content/shell/resources/shell_devtools_discovery_page.html b/chromecast/shell/browser/resources/shell_devtools_discovery_page.html
|
| similarity index 90%
|
| copy from content/shell/resources/shell_devtools_discovery_page.html
|
| copy to chromecast/shell/browser/resources/shell_devtools_discovery_page.html
|
| index 9aa4c300941726bff1bb70d7701e52b04e373c4e..00c937473ba1a8a34d744c34a7850724de1ac1bf 100644
|
| --- a/content/shell/resources/shell_devtools_discovery_page.html
|
| +++ b/chromecast/shell/browser/resources/shell_devtools_discovery_page.html
|
| @@ -1,6 +1,6 @@
|
| <html>
|
| <head>
|
| -<title>Content shell remote debugging</title>
|
| +<title>Cast shell remote debugging</title>
|
| <style>
|
| </style>
|
|
|
| @@ -14,10 +14,12 @@ function onLoad() {
|
|
|
| function onReady() {
|
| if(this.readyState == 4 && this.status == 200) {
|
| - if(this.response != null)
|
| + if(this.response != null) {
|
| var responseJSON = JSON.parse(this.response);
|
| - for (var i = 0; i < responseJSON.length; ++i)
|
| + for (var i = 0; i < responseJSON.length; ++i) {
|
| appendItem(responseJSON[i]);
|
| + }
|
| + }
|
| }
|
| }
|
|
|
|
|