Home
last modified time | relevance | path

Searched refs:jsonObj (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/inspector/
DConsoleMessage.cpp80 ScriptObject jsonObj = frontend->newScriptObject(); in addToConsole() local
81 jsonObj.set("source", static_cast<int>(m_source)); in addToConsole()
82 jsonObj.set("type", static_cast<int>(m_type)); in addToConsole()
83 jsonObj.set("level", static_cast<int>(m_level)); in addToConsole()
84 jsonObj.set("line", static_cast<int>(m_line)); in addToConsole()
85 jsonObj.set("url", m_url); in addToConsole()
86 jsonObj.set("groupLevel", static_cast<int>(m_groupLevel)); in addToConsole()
87 jsonObj.set("repeatCount", static_cast<int>(m_repeatCount)); in addToConsole()
88 frontend->addMessageToConsole(jsonObj, m_frames, m_wrappedArguments, m_message); in addToConsole()