| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> | 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> |
| 4 * Copyright (C) 2009 Google Inc. All rights reserved. | 4 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * | 9 * |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 MessageSource source() const { return m_source; } | 57 MessageSource source() const { return m_source; } |
| 58 const String& message() const { return m_message; } | 58 const String& message() const { return m_message; } |
| 59 | 59 |
| 60 private: | 60 private: |
| 61 MessageSource m_source; | 61 MessageSource m_source; |
| 62 MessageType m_type; | 62 MessageType m_type; |
| 63 MessageLevel m_level; | 63 MessageLevel m_level; |
| 64 String m_message; | 64 String m_message; |
| 65 #if ENABLE(INSPECTOR) | 65 #if ENABLE(INSPECTOR) |
| 66 Vector<ScriptValue> m_wrappedArguments; | 66 Vector<ScriptValue> m_arguments; |
| 67 ScriptState* m_scriptState; |
| 67 #endif | 68 #endif |
| 68 Vector<ScriptString> m_frames; | 69 Vector<ScriptString> m_frames; |
| 69 unsigned m_line; | 70 unsigned m_line; |
| 70 String m_url; | 71 String m_url; |
| 71 unsigned m_groupLevel; | 72 unsigned m_groupLevel; |
| 72 unsigned m_repeatCount; | 73 unsigned m_repeatCount; |
| 73 }; | 74 }; |
| 74 | 75 |
| 75 } // namespace WebCore | 76 } // namespace WebCore |
| 76 | 77 |
| 77 #endif // ConsoleMessage_h | 78 #endif // ConsoleMessage_h |
| OLD | NEW |