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

Side by Side Diff: chrome/browser/resources/inspect/inspect.html

Issue 338113002: DevTools: Added user warning for chrome://inspect/#devices in Incognito. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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 | chrome/browser/resources/inspect/inspect.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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <!-- 3 <!--
4 Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title>Inspect with Chrome Developer Tools</title> 10 <title>Inspect with Chrome Developer Tools</title>
(...skipping 20 matching lines...) Expand all
31 Discover USB devices 31 Discover USB devices
32 </label> 32 </label>
33 <button id="port-forwarding-config-open" disabled> 33 <button id="port-forwarding-config-open" disabled>
34 Port forwarding...</button> 34 Port forwarding...</button>
35 </div> 35 </div>
36 <div id="devices-help" hidden="true">No devices detected. Please read the 36 <div id="devices-help" hidden="true">No devices detected. Please read the
37 <a href="https://developers.google.com/chrome-developer-tools/docs/remot e-debugging"> 37 <a href="https://developers.google.com/chrome-developer-tools/docs/remot e-debugging">
38 remote debugging documentation</a> to verify your device is enabled for 38 remote debugging documentation</a> to verify your device is enabled for
39 USB debugging. 39 USB debugging.
40 </div> 40 </div>
41 <div id="devices-incognito" hidden="true">
42 Remote debugging is not available in Incognito mode.
43 </div>
41 <div id="devices-list"></div> 44 <div id="devices-list"></div>
42 </div> 45 </div>
43 <div id="pages"> 46 <div id="pages">
44 <div class="content-header">Pages</div> 47 <div class="content-header">Pages</div>
45 <div id="pages-list" class="list pages"></div> 48 <div id="pages-list" class="list pages"></div>
46 </div> 49 </div>
47 <div id="extensions"> 50 <div id="extensions">
48 <div class="content-header">Extensions</div> 51 <div class="content-header">Extensions</div>
49 <div id="extensions-list" class="list"></div> 52 <div id="extensions-list" class="list"></div>
50 </div> 53 </div>
(...skipping 30 matching lines...) Expand all
81 </div> 84 </div>
82 <div id="port-forwarding-config-buttons"> 85 <div id="port-forwarding-config-buttons">
83 <input id="port-forwarding-enable" type="checkbox" disabled/> 86 <input id="port-forwarding-enable" type="checkbox" disabled/>
84 <label for="port-forwarding-enable">Enable port forwarding</label> 87 <label for="port-forwarding-enable">Enable port forwarding</label>
85 <button id="port-forwarding-config-done">Done</button> 88 <button id="port-forwarding-config-done">Done</button>
86 </div> 89 </div>
87 </div> 90 </div>
88 </div> 91 </div>
89 </body> 92 </body>
90 </html> 93 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/inspect/inspect.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698