Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / inspector / ScriptCallFrame.cpp
index 73db181..ef69b23 100644 (file)
 #include "config.h"
 #include "core/inspector/ScriptCallFrame.h"
 
-namespace WebCore {
+namespace blink {
+
+ScriptCallFrame::ScriptCallFrame()
+    : m_functionName("undefined")
+    , m_scriptId("")
+    , m_scriptName("undefined")
+    , m_lineNumber(0)
+    , m_column(0)
+{
+}
 
 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column)
     : m_functionName(functionName)
@@ -57,4 +66,4 @@ PassRefPtr<TypeBuilder::Console::CallFrame> ScriptCallFrame::buildInspectorObjec
         .release();
 }
 
-} // namespace WebCore
+} // namespace blink