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

Unified Diff: chrome/browser/resources/inspect/inspect.html

Issue 2248133002: [DevTools] Add UI for adding remote targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: [DevTools] Add UI for adding remote targets Created 4 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
« no previous file with comments | « chrome/browser/resources/inspect/inspect.css ('k') | chrome/browser/resources/inspect/inspect.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/inspect/inspect.html
diff --git a/chrome/browser/resources/inspect/inspect.html b/chrome/browser/resources/inspect/inspect.html
index 8b90983c53eaa5b85278556207637c7eca0be48a..ebb45dda2de171df9f9a577d63f18be66ac1d3c9 100644
--- a/chrome/browser/resources/inspect/inspect.html
+++ b/chrome/browser/resources/inspect/inspect.html
@@ -24,14 +24,23 @@ found in the LICENSE file.
<div id="devices">
<div class="content-header">Devices</div>
<div id="device-settings">
- <input id="discover-usb-devices-enable" type="checkbox" disabled/>
- <label for="discover-usb-devices-enable"
- title="Enable Remote Debugging of Chrome for Android over raw USB
- interface (no need to install / run Android Debug Bridge).">
- Discover USB devices
- </label>
- <button id="port-forwarding-config-open" disabled>
- Port forwarding...</button>
+ <div class="settings-bar">
+ <label title="Enable Remote Debugging of Chrome for Android over raw USB
+ interface (no need to install / run Android Debug Bridge).">
+ <input id="discover-usb-devices-enable" type="checkbox" disabled>
+ Discover USB devices
+ </label>
+ <button id="port-forwarding-config-open" disabled>
+ Port forwarding...</button>
+ </div>
+ <div class="settings-bar">
+ <label title="Enable Remote Debugging over network.">
+ <input id="discover-tcp-devices-enable" type="checkbox" disabled>
+ Discover network targets
+ </label>
+ <button id="tcp-discovery-config-open">
+ Configure...</button>
+ </div>
</div>
<div id="devices-help" hidden="true">No devices detected. Please read the
<a href="https://developers.google.com/chrome-developer-tools/docs/remote-debugging">
@@ -69,22 +78,26 @@ found in the LICENSE file.
</div>
</div>
</div>
-<dialog id="port-forwarding-config">
- <div id="port-forwarding-config-close" class="close-button"></div>
- <div id="port-forwarding-config-title">Port forwarding settings</div>
- <div id="port-forwarding-config-list">
+<dialog id="config-dialog" class="config">
+ <div id="config-dialog-close" class="close-button"></div>
+ <div id="port-forwarding-config-title" class="title port-forwarding">Port forwarding settings</div>
+ <div id="target-discovery-config-title" class="title target-discovery">Target discovery settings</div>
+ <div id="config-list" class="list">
</div>
- <div id="port-forwarding-message">
+ <div id="port-forwarding-message" class="message port-forwarding">
Define the listening port on your device that maps to a port accessible
from your development machine.
<a href="https://developer.chrome.com/devtools/docs/remote-debugging#reverse-port-forwarding"
target="_blank">Learn more</a>
</div>
- <div id="port-forwarding-config-buttons">
- <label>
+ <div id="targets-message" class="message target-discovery">
+ Specify hosts and ports of the target discovery servers.
+ </div>
+ <div class="config-buttons">
+ <label class="port-forwarding">
<input id="port-forwarding-enable" type="checkbox" disabled>Enable port forwarding
</label>
- <button id="port-forwarding-config-done">Done</button>
+ <button id="button-done">Done</button>
</div>
</dialog>
</body>
« no previous file with comments | « chrome/browser/resources/inspect/inspect.css ('k') | chrome/browser/resources/inspect/inspect.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698