| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 Google Inc. All rights reserved. | 2 * Copyright (c) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "PageScriptDebugServer.h" | 32 #include "PageScriptDebugServer.h" |
| 33 | 33 |
| 34 | 34 |
| 35 #include "Frame.h" | 35 #include "Frame.h" |
| 36 #include "InspectorInstrumentation.h" | 36 #include "InspectorInstrumentation.h" |
| 37 #include "Page.h" | 37 #include "Page.h" |
| 38 #include "ScriptController.h" |
| 38 #include "ScriptDebugListener.h" | 39 #include "ScriptDebugListener.h" |
| 39 #include "V8Binding.h" | 40 #include "V8Binding.h" |
| 40 #include "V8DOMWindow.h" | 41 #include "V8DOMWindow.h" |
| 41 #include "V8RecursionScope.h" | 42 #include "V8RecursionScope.h" |
| 42 #include <wtf/OwnPtr.h> | 43 #include <wtf/OwnPtr.h> |
| 43 #include <wtf/PassOwnPtr.h> | 44 #include <wtf/PassOwnPtr.h> |
| 44 #include <wtf/StdLibExtras.h> | 45 #include <wtf/StdLibExtras.h> |
| 45 | 46 |
| 46 namespace WebCore { | 47 namespace WebCore { |
| 47 | 48 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 m_pausedPage = 0; | 188 m_pausedPage = 0; |
| 188 } | 189 } |
| 189 | 190 |
| 190 void PageScriptDebugServer::quitMessageLoopOnPause() | 191 void PageScriptDebugServer::quitMessageLoopOnPause() |
| 191 { | 192 { |
| 192 m_clientMessageLoop->quitNow(); | 193 m_clientMessageLoop->quitNow(); |
| 193 } | 194 } |
| 194 | 195 |
| 195 } // namespace WebCore | 196 } // namespace WebCore |
| 196 | 197 |
| OLD | NEW |