| 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 24 matching lines...) Expand all Loading... |
| 35 #include "core/CoreExport.h" | 35 #include "core/CoreExport.h" |
| 36 #include "core/inspector/InspectorTaskRunner.h" | 36 #include "core/inspector/InspectorTaskRunner.h" |
| 37 #include "core/inspector/ThreadDebugger.h" | 37 #include "core/inspector/ThreadDebugger.h" |
| 38 #include "platform/heap/Handle.h" | 38 #include "platform/heap/Handle.h" |
| 39 #include <memory> | 39 #include <memory> |
| 40 #include <v8-inspector.h> | 40 #include <v8-inspector.h> |
| 41 #include <v8.h> | 41 #include <v8.h> |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class ConsoleMessage; | |
| 46 class ErrorEvent; | 45 class ErrorEvent; |
| 47 class LocalFrame; | 46 class LocalFrame; |
| 48 class SecurityOrigin; | 47 class SecurityOrigin; |
| 49 class SourceLocation; | 48 class SourceLocation; |
| 50 | 49 |
| 51 class CORE_EXPORT MainThreadDebugger final : public ThreadDebugger { | 50 class CORE_EXPORT MainThreadDebugger final : public ThreadDebugger { |
| 52 WTF_MAKE_NONCOPYABLE(MainThreadDebugger); | 51 WTF_MAKE_NONCOPYABLE(MainThreadDebugger); |
| 53 | 52 |
| 54 public: | 53 public: |
| 55 class ClientMessageLoop { | 54 class ClientMessageLoop { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 | 120 |
| 122 std::unique_ptr<ClientMessageLoop> m_clientMessageLoop; | 121 std::unique_ptr<ClientMessageLoop> m_clientMessageLoop; |
| 123 std::unique_ptr<InspectorTaskRunner> m_taskRunner; | 122 std::unique_ptr<InspectorTaskRunner> m_taskRunner; |
| 124 bool m_paused; | 123 bool m_paused; |
| 125 static MainThreadDebugger* s_instance; | 124 static MainThreadDebugger* s_instance; |
| 126 }; | 125 }; |
| 127 | 126 |
| 128 } // namespace blink | 127 } // namespace blink |
| 129 | 128 |
| 130 #endif // MainThreadDebugger_h | 129 #endif // MainThreadDebugger_h |
| OLD | NEW |