| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 125 |
| 126 // V8Debugger implementation | 126 // V8Debugger implementation |
| 127 std::unique_ptr<V8InspectorSession> connect(int contextGroupId, protocol::Fr
ontendChannel*, V8InspectorSessionClient*, const String16* state) override; | 127 std::unique_ptr<V8InspectorSession> connect(int contextGroupId, protocol::Fr
ontendChannel*, V8InspectorSessionClient*, const String16* state) override; |
| 128 void contextCreated(const V8ContextInfo&) override; | 128 void contextCreated(const V8ContextInfo&) override; |
| 129 void contextDestroyed(v8::Local<v8::Context>) override; | 129 void contextDestroyed(v8::Local<v8::Context>) override; |
| 130 void resetContextGroup(int contextGroupId) override; | 130 void resetContextGroup(int contextGroupId) override; |
| 131 void willExecuteScript(v8::Local<v8::Context>, int scriptId) override; | 131 void willExecuteScript(v8::Local<v8::Context>, int scriptId) override; |
| 132 void didExecuteScript(v8::Local<v8::Context>) override; | 132 void didExecuteScript(v8::Local<v8::Context>) override; |
| 133 void idleStarted() override; | 133 void idleStarted() override; |
| 134 void idleFinished() override; | 134 void idleFinished() override; |
| 135 void logToConsole(v8::Local<v8::Context>, v8::Local<v8::Value> arg1, v8::Loc
al<v8::Value> arg2) override; | |
| 136 void exceptionThrown(int contextGroupId, const String16& errorMessage, const
String16& url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8St
ackTrace>, int scriptId) override; | 135 void exceptionThrown(int contextGroupId, const String16& errorMessage, const
String16& url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8St
ackTrace>, int scriptId) override; |
| 137 unsigned promiseRejected(v8::Local<v8::Context>, const String16& errorMessag
e, v8::Local<v8::Value> exception, const String16& url, unsigned lineNumber, uns
igned columnNumber, std::unique_ptr<V8StackTrace>, int scriptId) override; | 136 unsigned promiseRejected(v8::Local<v8::Context>, const String16& errorMessag
e, v8::Local<v8::Value> exception, const String16& url, unsigned lineNumber, uns
igned columnNumber, std::unique_ptr<V8StackTrace>, int scriptId) override; |
| 138 void promiseRejectionRevoked(v8::Local<v8::Context>, unsigned promiseRejecti
onId) override; | 137 void promiseRejectionRevoked(v8::Local<v8::Context>, unsigned promiseRejecti
onId) override; |
| 139 std::unique_ptr<V8StackTrace> createStackTrace(v8::Local<v8::StackTrace>) ov
erride; | 138 std::unique_ptr<V8StackTrace> createStackTrace(v8::Local<v8::StackTrace>) ov
erride; |
| 140 std::unique_ptr<V8StackTrace> captureStackTrace(bool fullStack) override; | 139 std::unique_ptr<V8StackTrace> captureStackTrace(bool fullStack) override; |
| 141 void asyncTaskScheduled(const String16& taskName, void* task, bool recurring
) override; | 140 void asyncTaskScheduled(const String16& taskName, void* task, bool recurring
) override; |
| 142 void asyncTaskCanceled(void* task) override; | 141 void asyncTaskCanceled(void* task) override; |
| 143 void asyncTaskStarted(void* task) override; | 142 void asyncTaskStarted(void* task) override; |
| 144 void asyncTaskFinished(void* task) override; | 143 void asyncTaskFinished(void* task) override; |
| 145 void allAsyncTasksCanceled() override; | 144 void allAsyncTasksCanceled() override; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 int m_maxAsyncCallStackDepth; | 201 int m_maxAsyncCallStackDepth; |
| 203 std::vector<void*> m_currentTasks; | 202 std::vector<void*> m_currentTasks; |
| 204 std::vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks; | 203 std::vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks; |
| 205 protocol::HashMap<V8DebuggerAgentImpl*, int> m_maxAsyncCallStackDepthMap; | 204 protocol::HashMap<V8DebuggerAgentImpl*, int> m_maxAsyncCallStackDepthMap; |
| 206 }; | 205 }; |
| 207 | 206 |
| 208 } // namespace blink | 207 } // namespace blink |
| 209 | 208 |
| 210 | 209 |
| 211 #endif // V8DebuggerImpl_h | 210 #endif // V8DebuggerImpl_h |
| OLD | NEW |