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

Unified Diff: Source/core/inspector/ScriptCallFrame.cpp

Issue 1532413002: Added Dartium changes onto 45.0.2454.104 (Closed) Base URL: http://src.chromium.org/blink/branches/chromium/2454
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/inspector/ScriptCallFrame.h ('k') | Source/devtools/front_end/sdk/ResourceTreeModel.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/ScriptCallFrame.cpp
diff --git a/Source/core/inspector/ScriptCallFrame.cpp b/Source/core/inspector/ScriptCallFrame.cpp
index 0cc277bf39bfb39408935e19887250678dd081fc..a904053c8e98dbf3d9861ac250f02c1644b6d474 100644
--- a/Source/core/inspector/ScriptCallFrame.cpp
+++ b/Source/core/inspector/ScriptCallFrame.cpp
@@ -41,6 +41,7 @@ ScriptCallFrame::ScriptCallFrame()
, m_scriptName("undefined")
, m_lineNumber(0)
, m_column(0)
+ , m_isEmpty(true)
{
}
@@ -50,6 +51,7 @@ ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scrip
, m_scriptName(scriptName)
, m_lineNumber(lineNumber)
, m_column(column)
+ , m_isEmpty(false)
{
}
« no previous file with comments | « Source/core/inspector/ScriptCallFrame.h ('k') | Source/devtools/front_end/sdk/ResourceTreeModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698