| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 | 51 |
| 52 // V8DebuggerClient implementation. | 52 // V8DebuggerClient implementation. |
| 53 void runMessageLoopOnPause(int contextGroupId) override; | 53 void runMessageLoopOnPause(int contextGroupId) override; |
| 54 void quitMessageLoopOnPause() override; | 54 void quitMessageLoopOnPause() override; |
| 55 void muteWarningsAndDeprecations() override { }; | 55 void muteWarningsAndDeprecations() override { }; |
| 56 void unmuteWarningsAndDeprecations() override { }; | 56 void unmuteWarningsAndDeprecations() override { }; |
| 57 void muteConsole() override { }; | 57 void muteConsole() override { }; |
| 58 void unmuteConsole() override { }; | 58 void unmuteConsole() override { }; |
| 59 bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Loca
l<v8::Context> target) override; | 59 bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Loca
l<v8::Context> target) override; |
| 60 | 60 |
| 61 bool hasMemoryOnConsole(v8::Local<v8::Context>) override { return false; } |
| 62 v8::MaybeLocal<v8::Value> memoryInfo(v8::Isolate*, v8::Local<v8::Context>, v
8::Local<v8::Object> creationContext) override { return v8::MaybeLocal<v8::Value
>(); } |
| 63 protected: |
| 64 void reportMessageToConsole(v8::Local<v8::Context>, ConsoleMessage*); |
| 65 |
| 61 private: | 66 private: |
| 62 WorkerThread* m_workerThread; | 67 WorkerThread* m_workerThread; |
| 63 }; | 68 }; |
| 64 | 69 |
| 65 } // namespace blink | 70 } // namespace blink |
| 66 | 71 |
| 67 #endif // WorkerThreadDebugger_h | 72 #endif // WorkerThreadDebugger_h |
| OLD | NEW |