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

Side by Side Diff: inspector/ConsoleMessage.h

Issue 542055: DevTools: injected script per context(WebCore part) (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
Patch Set: '' Created 10 years, 11 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 unified diff | Download patch
« no previous file with comments | « bindings/v8/custom/V8InjectedScriptHostCustom.cpp ('k') | inspector/ConsoleMessage.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « bindings/v8/custom/V8InjectedScriptHostCustom.cpp ('k') | inspector/ConsoleMessage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698