| Index: Source/WebCore/inspector/InspectorDebuggerAgent.cpp
|
| ===================================================================
|
| --- Source/WebCore/inspector/InspectorDebuggerAgent.cpp (revision 107228)
|
| +++ Source/WebCore/inspector/InspectorDebuggerAgent.cpp (working copy)
|
| @@ -179,6 +179,11 @@
|
| m_frontend->globalObjectCleared();
|
| }
|
|
|
| +bool InspectorDebuggerAgent::isPaused()
|
| +{
|
| + return scriptDebugServer().isPaused();
|
| +}
|
| +
|
| static PassRefPtr<InspectorObject> buildObjectForBreakpointCookie(const String& url, int lineNumber, int columnNumber, const String& condition, bool isRegex)
|
| {
|
| RefPtr<InspectorObject> breakpointObject = InspectorObject::create();
|
|
|