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

Unified Diff: content/shell/shell_devtools_discovery_page.html

Issue 11591016: DevTools: allow query parameters and fragments in remote debugging command urls. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Lint Created 8 years 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
« no previous file with comments | « content/browser/debugger/devtools_http_handler_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_devtools_discovery_page.html
diff --git a/content/shell/shell_devtools_discovery_page.html b/content/shell/shell_devtools_discovery_page.html
index e8a730a6917ca5508865573e0fb224e73d6c55ba..9aa4c300941726bff1bb70d7701e52b04e373c4e 100644
--- a/content/shell/shell_devtools_discovery_page.html
+++ b/content/shell/shell_devtools_discovery_page.html
@@ -7,7 +7,7 @@
<script>
function onLoad() {
var tabs_list_request = new XMLHttpRequest();
- tabs_list_request.open("GET", "/json" + new Date().getTime(), true);
+ tabs_list_request.open("GET", "/json/list?t=" + new Date().getTime(), true);
tabs_list_request.onreadystatechange = onReady;
tabs_list_request.send();
}
« no previous file with comments | « content/browser/debugger/devtools_http_handler_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698