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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/ConsoleModel.js

Issue 2139543002: [DevTools] Report console API calls through Runtime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 5 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/sdk/ConsoleModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/ConsoleModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/ConsoleModel.js
index 485b88899e925c0967e92a4169290818b08b57ee..f84f3fa66df466c203e677023096b42d34a7e718 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/ConsoleModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/ConsoleModel.js
@@ -477,6 +477,10 @@ WebInspector.ConsoleMessage.MessageSource = {
*/
WebInspector.ConsoleMessage.MessageType = {
Log: "log",
+ Debug: "debug",
+ Info: "info",
+ Error: "error",
+ Warning: "warning",
Dir: "dir",
DirXML: "dirxml",
Table: "table",
@@ -486,6 +490,7 @@ WebInspector.ConsoleMessage.MessageType = {
StartGroupCollapsed: "startGroupCollapsed",
EndGroup: "endGroup",
Assert: "assert",
+ Count: "count",
kozy 2016/07/13 18:26:39 Why count is here?
dgozman 2016/07/13 21:08:07 Removed.
Result: "result",
Profile: "profile",
ProfileEnd: "profileEnd",

Powered by Google App Engine
This is Rietveld 408576698