| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #ifndef WebConsoleMessage_h | 31 #ifndef WebConsoleMessage_h |
| 32 #define WebConsoleMessage_h | 32 #define WebConsoleMessage_h |
| 33 | 33 |
| 34 #include "../platform/WebString.h" | 34 #include "../platform/WebString.h" |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 struct WebConsoleMessage { | 38 struct WebConsoleMessage { |
| 39 enum Level { | 39 enum Level { |
| 40 LevelDebug = 4, | 40 LevelVerbose, |
| 41 LevelLog = 1, | 41 LevelInfo, |
| 42 LevelInfo = 5, | 42 LevelWarning, |
| 43 LevelWarning = 2, | 43 LevelError, |
| 44 LevelError = 3, | 44 LevelLast = LevelError |
| 45 LevelLast = LevelInfo | |
| 46 }; | 45 }; |
| 47 | 46 |
| 48 Level level; | 47 Level level; |
| 49 WebString text; | 48 WebString text; |
| 50 WebString url; | 49 WebString url; |
| 51 unsigned lineNumber; | 50 unsigned lineNumber; |
| 52 unsigned columnNumber; | 51 unsigned columnNumber; |
| 53 | 52 |
| 54 WebConsoleMessage() : level(LevelLog), lineNumber(0), columnNumber(0) {} | 53 WebConsoleMessage() : level(LevelInfo), lineNumber(0), columnNumber(0) {} |
| 55 WebConsoleMessage(Level level, const WebString& text) | 54 WebConsoleMessage(Level level, const WebString& text) |
| 56 : level(level), text(text), lineNumber(0), columnNumber(0) {} | 55 : level(level), text(text), lineNumber(0), columnNumber(0) {} |
| 57 }; | 56 }; |
| 58 | 57 |
| 59 } // namespace blink | 58 } // namespace blink |
| 60 | 59 |
| 61 #endif | 60 #endif |
| OLD | NEW |