| Index: Source/core/inspector/ScriptCallFrame.h
 | 
| diff --git a/Source/core/inspector/ScriptCallFrame.h b/Source/core/inspector/ScriptCallFrame.h
 | 
| index 1788425900995825f19ef8a5ca964fee7928bc76..fb69952d39870ad180abb0eb4a0ada4eb1e5a258 100644
 | 
| --- a/Source/core/inspector/ScriptCallFrame.h
 | 
| +++ b/Source/core/inspector/ScriptCallFrame.h
 | 
| @@ -50,6 +50,7 @@ public:
 | 
|      const String& sourceURL() const { return m_scriptName; }
 | 
|      unsigned lineNumber() const { return m_lineNumber; }
 | 
|      unsigned columnNumber() const { return m_column; }
 | 
| +    bool isEmpty() const { return m_isEmpty; }
 | 
|  
 | 
|      PassRefPtr<TypeBuilder::Console::CallFrame> buildInspectorObject() const;
 | 
|      void toTracedValue(TracedValue*) const;
 | 
| @@ -60,6 +61,7 @@ private:
 | 
|      String m_scriptName;
 | 
|      unsigned m_lineNumber;
 | 
|      unsigned m_column;
 | 
| +    bool m_isEmpty;
 | 
|  };
 | 
|  
 | 
|  } // namespace blink
 | 
| 
 |