Chromium Code Reviews| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 int ensureDefaultContextInGroup(int contextGroupId) override; | 60 int ensureDefaultContextInGroup(int contextGroupId) override; |
| 61 | 61 |
| 62 v8::MaybeLocal<v8::Value> memoryInfo(v8::Isolate*, v8::Local<v8::Context>, v 8::Local<v8::Object> creationContext) override { return v8::MaybeLocal<v8::Value >(); } | |
|
dgozman
2016/04/12 03:32:15
Move to cpp. Add ASSERT_NOT_REACHED.
kozy
2016/04/12 21:58:32
Done.
| |
| 63 protected: | |
| 64 void reportMessageToConsole(v8::Local<v8::Context>, ConsoleMessage*); | |
| 65 | |
| 62 private: | 66 private: |
| 63 WorkerThread* m_workerThread; | 67 WorkerThread* m_workerThread; |
| 64 }; | 68 }; |
| 65 | 69 |
| 66 } // namespace blink | 70 } // namespace blink |
| 67 | 71 |
| 68 #endif // WorkerThreadDebugger_h | 72 #endif // WorkerThreadDebugger_h |
| OLD | NEW |