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

Side by Side Diff: chrome/browser/resources/net_internals/chromeos_view.html

Issue 10024056: Added functionality to chrome://net-internals/#chromeos page that user (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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
OLDNEW
1 <div id="chromeos-view-tab-content" class=content-box> 1 <div id="chromeos-view-tab-content" class=content-box>
2 <h3>Import ONC file</h3> 2 <h3>Import ONC file</h3>
3 <div id="chromeos-view-import-div"> 3 <div id="chromeos-view-import-div">
4 <input type="file" id="chromeos-view-import-onc"> 4 <input type="file" id="chromeos-view-import-onc">
5 </div> 5 </div>
6 <div id="chromeos-view-password-div" hidden> 6 <div id="chromeos-view-password-div" hidden>
7 This onc file appears to be encrypted. Please provide the decryption key: 7 This onc file appears to be encrypted. Please provide the decryption key:
8 <div> 8 <div>
9 <input type="password" id="chromeos-view-onc-password"> 9 <input type="password" id="chromeos-view-onc-password">
10 </div> 10 </div>
11 </div> 11 </div>
12 <div id="chromeos-view-parse-status" hidden> 12 <div id="chromeos-view-parse-status" hidden>
13 </div> 13 </div>
14 <div id="chromeos-view-network-debugging-div">
15 <h3>Network Debugging</h3>
16 <dl>
17 <dt>Select interface for debugging</dt>
18 <dd>
19 <input type="button"
20 value="Wi-Fi"
21 id="chromeos-view-network-debugging-wifi">
22 <input type="button"
23 value="Ethernet"
24 id="chromeos-view-network-debugging-ethernet">
25 <input type="button"
26 value="Cellular"
27 id="chromeos-view-network-debugging-cellular">
28 <input type="button"
29 name="subsystem"
30 value="None"
31 id="chromeos-view-network-debugging-none">
32 </dd>
33 </dl>
34 <label id="chromeos-view-network-debugging-status">
35 </label>
36 </div>
14 </div> 37 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698