| 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #ifndef MainThreadDebugger_h | 31 #ifndef MainThreadDebugger_h |
| 32 #define MainThreadDebugger_h | 32 #define MainThreadDebugger_h |
| 33 | 33 |
| 34 #include "bindings/core/v8/ScriptState.h" | 34 #include "bindings/core/v8/ScriptState.h" |
| 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.h> | 41 #include <v8.h> |
| 41 | 42 |
| 42 namespace blink { | 43 namespace blink { |
| 43 | 44 |
| 44 class ConsoleMessage; | 45 class ConsoleMessage; |
| 45 class ErrorEvent; | 46 class ErrorEvent; |
| 46 class LocalFrame; | 47 class LocalFrame; |
| 47 class SecurityOrigin; | 48 class SecurityOrigin; |
| 48 class SourceLocation; | 49 class SourceLocation; |
| 49 | 50 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 std::unique_ptr<ClientMessageLoop> m_clientMessageLoop; | 103 std::unique_ptr<ClientMessageLoop> m_clientMessageLoop; |
| 103 std::unique_ptr<InspectorTaskRunner> m_taskRunner; | 104 std::unique_ptr<InspectorTaskRunner> m_taskRunner; |
| 104 bool m_paused; | 105 bool m_paused; |
| 105 static MainThreadDebugger* s_instance; | 106 static MainThreadDebugger* s_instance; |
| 106 }; | 107 }; |
| 107 | 108 |
| 108 } // namespace blink | 109 } // namespace blink |
| 109 | 110 |
| 110 | 111 |
| 111 #endif // MainThreadDebugger_h | 112 #endif // MainThreadDebugger_h |
| OLD | NEW |