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

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

Issue 560523004: DevTools: Made id unique across different remote browsers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed leak in test Created 6 years, 3 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
Index: chrome/browser/resources/inspect/inspect.js
diff --git a/chrome/browser/resources/inspect/inspect.js b/chrome/browser/resources/inspect/inspect.js
index a4a27587318407bca84ba7d7e64b920c474335df..f3b1cf2a2905b02952607141f130dacb78ceae27 100644
--- a/chrome/browser/resources/inspect/inspect.js
+++ b/chrome/browser/resources/inspect/inspect.js
@@ -544,6 +544,7 @@ function addWebViewThumbnail(row, webview, screenWidth, screenHeight) {
function addTargetToList(data, list, properties) {
var row = document.createElement('div');
row.className = 'row';
+ row.targetId = data.id;
var propertiesBox = document.createElement('div');
propertiesBox.className = 'properties-box';
« no previous file with comments | « chrome/browser/devtools/device/devtools_android_bridge.cc ('k') | chrome/test/data/webui/inspect_ui_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698