| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 private: | 71 private: |
| 72 // V8DebuggerClient implementation. | 72 // V8DebuggerClient implementation. |
| 73 void runMessageLoopOnPause(int contextGroupId) override; | 73 void runMessageLoopOnPause(int contextGroupId) override; |
| 74 void quitMessageLoopOnPause() override; | 74 void quitMessageLoopOnPause() override; |
| 75 void muteWarningsAndDeprecations() override; | 75 void muteWarningsAndDeprecations() override; |
| 76 void unmuteWarningsAndDeprecations() override; | 76 void unmuteWarningsAndDeprecations() override; |
| 77 void muteConsole() override; | 77 void muteConsole() override; |
| 78 void unmuteConsole() override; | 78 void unmuteConsole() override; |
| 79 bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Loca
l<v8::Context> target) override; | 79 bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Loca
l<v8::Context> target) override; |
| 80 int ensureDefaultContextInGroup(int contextGroupId) override; |
| 80 | 81 |
| 81 OwnPtr<ClientMessageLoop> m_clientMessageLoop; | 82 OwnPtr<ClientMessageLoop> m_clientMessageLoop; |
| 82 OwnPtr<InspectorTaskRunner> m_taskRunner; | 83 OwnPtr<InspectorTaskRunner> m_taskRunner; |
| 83 | 84 |
| 84 static MainThreadDebugger* s_instance; | 85 static MainThreadDebugger* s_instance; |
| 85 }; | 86 }; |
| 86 | 87 |
| 87 } // namespace blink | 88 } // namespace blink |
| 88 | 89 |
| 89 | 90 |
| 90 #endif // MainThreadDebugger_h | 91 #endif // MainThreadDebugger_h |
| OLD | NEW |