| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010, Google Inc. All rights reserved. | 2 * Copyright (c) 2010, 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 30 matching lines...) Expand all Loading... |
| 41 #include "wtf/PassOwnPtr.h" | 41 #include "wtf/PassOwnPtr.h" |
| 42 #include "wtf/Vector.h" | 42 #include "wtf/Vector.h" |
| 43 #include "wtf/text/StringHash.h" | 43 #include "wtf/text/StringHash.h" |
| 44 #include "wtf/text/WTFString.h" | 44 #include "wtf/text/WTFString.h" |
| 45 | 45 |
| 46 namespace WebCore { | 46 namespace WebCore { |
| 47 | 47 |
| 48 class ScriptState; | 48 class ScriptState; |
| 49 class ScriptController; | 49 class ScriptController; |
| 50 class ScriptDebugListener; | 50 class ScriptDebugListener; |
| 51 class ScriptObject; | |
| 52 class ScriptSourceCode; | 51 class ScriptSourceCode; |
| 53 class ScriptValue; | 52 class ScriptValue; |
| 54 class JavaScriptCallFrame; | 53 class JavaScriptCallFrame; |
| 55 | 54 |
| 56 class ScriptDebugServer { | 55 class ScriptDebugServer { |
| 57 WTF_MAKE_NONCOPYABLE(ScriptDebugServer); | 56 WTF_MAKE_NONCOPYABLE(ScriptDebugServer); |
| 58 public: | 57 public: |
| 59 String setBreakpoint(const String& sourceID, const ScriptBreakpoint&, int* a
ctualLineNumber, int* actualColumnNumber, bool interstatementLocation); | 58 String setBreakpoint(const String& sourceID, const ScriptBreakpoint&, int* a
ctualLineNumber, int* actualColumnNumber, bool interstatementLocation); |
| 60 void removeBreakpoint(const String& breakpointId); | 59 void removeBreakpoint(const String& breakpointId); |
| 61 void clearBreakpoints(); | 60 void clearBreakpoints(); |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 void stepCommandWithFrame(const char* functionName, const ScriptValue& frame
); | 147 void stepCommandWithFrame(const char* functionName, const ScriptValue& frame
); |
| 149 PassRefPtr<JavaScriptCallFrame> wrapCallFrames(int maximumLimit, ScopeInfoDe
tails); | 148 PassRefPtr<JavaScriptCallFrame> wrapCallFrames(int maximumLimit, ScopeInfoDe
tails); |
| 150 | 149 |
| 151 bool m_runningNestedMessageLoop; | 150 bool m_runningNestedMessageLoop; |
| 152 }; | 151 }; |
| 153 | 152 |
| 154 } // namespace WebCore | 153 } // namespace WebCore |
| 155 | 154 |
| 156 | 155 |
| 157 #endif // ScriptDebugServer_h | 156 #endif // ScriptDebugServer_h |
| OLD | NEW |