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

Unified Diff: chromecast/shell/browser/resources/shell_devtools_discovery_page.html

Issue 454063004: Adds remote devtools support to cast_shell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
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]);
+ }
+ }
}
}
« no previous file with comments | « chromecast/shell/browser/resources/resource_ids ('k') | chromecast/shell/browser/resources/shell_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698