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

Side by Side Diff: Source/devtools/front_end/devtools.html

Issue 1063693002: [WIP] Support opening an inspector window for ServiceWorker running on Android (blink) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 8 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 | Source/devtools/front_end/devtools_app/InspectorFrontendHostImpl.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 <!-- 1 <!--
2 * Copyright 2014 The Chromium Authors. All rights reserved. 2 * Copyright 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 --> 5 -->
6 <!doctype html> 6 <!doctype html>
7 <html> 7 <html>
8 <head> 8 <head>
9 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 9 <meta http-equiv="content-type" content="text/html; charset=utf-8">
10 <meta http-equiv="Content-Security-Policy" content="object-src 'none'; scrip t-src 'self' 'unsafe-eval' 'unsafe-inline' https://chrome-devtools-frontend.apps pot.com"> 10 <meta http-equiv="Content-Security-Policy" content="object-src 'none'; scrip t-src 'self' 'unsafe-eval' 'unsafe-inline' https://chrome-devtools-frontend.apps pot.com">
11 <link rel="stylesheet" type="text/css" href="devtools.css"> 11 <link rel="stylesheet" type="text/css" href="devtools.css">
12 <script type="text/javascript" src="Runtime.js"></script> 12 <script type="text/javascript" src="Runtime.js"></script>
13 <script type="text/javascript" src="devtools.js"></script> 13 <script type="text/javascript" src="devtools.js"></script>
14 </head> 14 </head>
15 <body class="undocked" id="-blink-dev-tools"> 15 <body class="undocked" id="-blink-dev-tools">
16 <script> 16 <script>
17 (function() { 17 (function() {
18 var remoteFrontendUrl = Runtime.queryParam("remoteFrontendUrl"); 18 var remoteFrontendUrl = Runtime.queryParam("remoteFrontendUrl");
19 var src = remoteFrontendUrl 19 var src = remoteFrontendUrl
20 ? decodeURIComponent(remoteFrontendUrl) + Runtime.constructQueryParams([ "remoteFrontendUrl"]) 20 ? decodeURIComponent(remoteFrontendUrl) + Runtime.constructQueryParams([ "remoteFrontendUrl"])
21 : "inspector.html" + window.location.search; 21 : "inspector.html" + window.location.search;
22 src = "inspector.html" + window.location.search;
22 document.write("<iframe id='inspector-app-iframe' class='fill' src='" + src + "'></iframe>"); 23 document.write("<iframe id='inspector-app-iframe' class='fill' src='" + src + "'></iframe>");
23 })(); 24 })();
24 </script> 25 </script>
25 </body> 26 </body>
26 </html> 27 </html>
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/devtools_app/InspectorFrontendHostImpl.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698