Chromium Code Reviews| 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", |