| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 v8::Local<v8::Context> pausedContext() { return m_pausedContext; } | 91 v8::Local<v8::Context> pausedContext() { return m_pausedContext; } |
| 92 | 92 |
| 93 v8::MaybeLocal<v8::Value> functionScopes(v8::Local<v8::Function>); | 93 v8::MaybeLocal<v8::Value> functionScopes(v8::Local<v8::Function>); |
| 94 v8::Local<v8::Value> generatorObjectDetails(v8::Local<v8::Object>&); | 94 v8::Local<v8::Value> generatorObjectDetails(v8::Local<v8::Object>&); |
| 95 v8::Local<v8::Value> collectionEntries(v8::Local<v8::Object>&); | 95 v8::Local<v8::Value> collectionEntries(v8::Local<v8::Object>&); |
| 96 v8::MaybeLocal<v8::Value> setFunctionVariableValue(v8::Local<v8::Value> func
tionValue, int scopeNumber, const String16& variableName, v8::Local<v8::Value> n
ewValue); | 96 v8::MaybeLocal<v8::Value> setFunctionVariableValue(v8::Local<v8::Value> func
tionValue, int scopeNumber, const String16& variableName, v8::Local<v8::Value> n
ewValue); |
| 97 | 97 |
| 98 v8::Isolate* isolate() const { return m_isolate; } | 98 v8::Isolate* isolate() const { return m_isolate; } |
| 99 V8DebuggerClient* client() { return m_client; } | 99 V8DebuggerClient* client() { return m_client; } |
| 100 | 100 |
| 101 v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Context>, v8::Loca
l<v8::Script>); |
| 102 v8::MaybeLocal<v8::Value> callFunction(v8::Local<v8::Function>, v8::Local<v8
::Context>, v8::Local<v8::Value> receiver, int argc, v8::Local<v8::Value> info[]
); |
| 103 v8::MaybeLocal<v8::Value> compileAndRunInternalScript(v8::Local<v8::Context>
, v8::Local<v8::String>); |
| 101 v8::Local<v8::Script> compileInternalScript(v8::Local<v8::Context>, v8::Loca
l<v8::String>, const String16& fileName); | 104 v8::Local<v8::Script> compileInternalScript(v8::Local<v8::Context>, v8::Loca
l<v8::String>, const String16& fileName); |
| 102 v8::Local<v8::Context> regexContext(); | 105 v8::Local<v8::Context> regexContext(); |
| 103 | 106 |
| 104 // V8Debugger implementation | 107 // V8Debugger implementation |
| 105 void contextCreated(const V8ContextInfo&) override; | 108 void contextCreated(const V8ContextInfo&) override; |
| 106 void contextDestroyed(v8::Local<v8::Context>) override; | 109 void contextDestroyed(v8::Local<v8::Context>) override; |
| 107 PassOwnPtr<V8StackTrace> createStackTrace(v8::Local<v8::StackTrace>, size_t
maxStackSize) override; | 110 PassOwnPtr<V8StackTrace> createStackTrace(v8::Local<v8::StackTrace>, size_t
maxStackSize) override; |
| 108 PassOwnPtr<V8StackTrace> captureStackTrace(size_t maxStackSize) override; | 111 PassOwnPtr<V8StackTrace> captureStackTrace(size_t maxStackSize) override; |
| 109 | 112 |
| 110 private: | 113 private: |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 v8::Local<v8::Object> m_executionState; | 153 v8::Local<v8::Object> m_executionState; |
| 151 v8::Local<v8::Context> m_pausedContext; | 154 v8::Local<v8::Context> m_pausedContext; |
| 152 bool m_runningNestedMessageLoop; | 155 bool m_runningNestedMessageLoop; |
| 153 v8::Global<v8::Context> m_regexContext; | 156 v8::Global<v8::Context> m_regexContext; |
| 154 }; | 157 }; |
| 155 | 158 |
| 156 } // namespace blink | 159 } // namespace blink |
| 157 | 160 |
| 158 | 161 |
| 159 #endif // V8DebuggerImpl_h | 162 #endif // V8DebuggerImpl_h |
| OLD | NEW |