| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 const String16& fileName); | 67 const String16& fileName); |
| 68 v8::Local<v8::Context> regexContext(); | 68 v8::Local<v8::Context> regexContext(); |
| 69 | 69 |
| 70 // V8Inspector implementation. | 70 // V8Inspector implementation. |
| 71 std::unique_ptr<V8InspectorSession> connect(int contextGroupId, | 71 std::unique_ptr<V8InspectorSession> connect(int contextGroupId, |
| 72 V8Inspector::Channel*, | 72 V8Inspector::Channel*, |
| 73 const StringView& state) override; | 73 const StringView& state) override; |
| 74 void contextCreated(const V8ContextInfo&) override; | 74 void contextCreated(const V8ContextInfo&) override; |
| 75 void contextDestroyed(v8::Local<v8::Context>) override; | 75 void contextDestroyed(v8::Local<v8::Context>) override; |
| 76 void resetContextGroup(int contextGroupId) override; | 76 void resetContextGroup(int contextGroupId) override; |
| 77 void willExecuteScript(v8::Local<v8::Context>, int scriptId) override; | |
| 78 void didExecuteScript(v8::Local<v8::Context>) override; | |
| 79 void idleStarted() override; | 77 void idleStarted() override; |
| 80 void idleFinished() override; | 78 void idleFinished() override; |
| 81 unsigned exceptionThrown(v8::Local<v8::Context>, const StringView& message, | 79 unsigned exceptionThrown(v8::Local<v8::Context>, const StringView& message, |
| 82 v8::Local<v8::Value> exception, | 80 v8::Local<v8::Value> exception, |
| 83 const StringView& detailedMessage, | 81 const StringView& detailedMessage, |
| 84 const StringView& url, unsigned lineNumber, | 82 const StringView& url, unsigned lineNumber, |
| 85 unsigned columnNumber, std::unique_ptr<V8StackTrace>, | 83 unsigned columnNumber, std::unique_ptr<V8StackTrace>, |
| 86 int scriptId) override; | 84 int scriptId) override; |
| 87 void exceptionRevoked(v8::Local<v8::Context>, unsigned exceptionId, | 85 void exceptionRevoked(v8::Local<v8::Context>, unsigned exceptionId, |
| 88 const StringView& message) override; | 86 const StringView& message) override; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 ConsoleStorageMap m_consoleStorageMap; | 136 ConsoleStorageMap m_consoleStorageMap; |
| 139 | 137 |
| 140 protocol::HashMap<int, int> m_contextIdToGroupIdMap; | 138 protocol::HashMap<int, int> m_contextIdToGroupIdMap; |
| 141 | 139 |
| 142 DISALLOW_COPY_AND_ASSIGN(V8InspectorImpl); | 140 DISALLOW_COPY_AND_ASSIGN(V8InspectorImpl); |
| 143 }; | 141 }; |
| 144 | 142 |
| 145 } // namespace v8_inspector | 143 } // namespace v8_inspector |
| 146 | 144 |
| 147 #endif // V8_INSPECTOR_V8INSPECTORIMPL_H_ | 145 #endif // V8_INSPECTOR_V8INSPECTORIMPL_H_ |
| OLD | NEW |