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

Unified Diff: third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js

Issue 1953653002: [DevTools] Remove warning note for proxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix-completion-for-proxy
Patch Set: Created 4 years, 7 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: third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
index a5ee48bc326ebf8cc990af8ce8ed5d08f376dee4..53c190c528b25aba3bf657a8c0c1c3d74f5da820 100644
--- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
+++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
@@ -425,11 +425,6 @@ WebInspector.ConsoleViewMessage.prototype = {
titleElement.createTextChild(obj.description || "");
}
}
- if (obj.subtype === "proxy") {
- var warning = titleElement.createChild("span", "object-state-note");
- warning.classList.add("warning-note");
- warning.title = WebInspector.UIString("Expansion of the Proxy object can lead to JavaScript execution.");
- }
var note = titleElement.createChild("span", "object-state-note");
note.classList.add("info-note");
note.title = WebInspector.UIString("Object value at left was snapshotted when logged, value below was evaluated just now.");

Powered by Google App Engine
This is Rietveld 408576698