| 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 23 matching lines...) Expand all Loading... |
| 34 #include "core/inspector/InspectorSession.h" | 34 #include "core/inspector/InspectorSession.h" |
| 35 #include "core/inspector/InspectorTaskRunner.h" | 35 #include "core/inspector/InspectorTaskRunner.h" |
| 36 #include "wtf/Allocator.h" | 36 #include "wtf/Allocator.h" |
| 37 #include "wtf/Forward.h" | 37 #include "wtf/Forward.h" |
| 38 #include "wtf/Noncopyable.h" | 38 #include "wtf/Noncopyable.h" |
| 39 #include "wtf/RefPtr.h" | 39 #include "wtf/RefPtr.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class InstrumentingAgents; | 43 class InstrumentingAgents; |
| 44 class V8Debugger; | |
| 45 class WorkerThread; | 44 class WorkerThread; |
| 46 class WorkerThreadDebugger; | 45 class WorkerThreadDebugger; |
| 47 | 46 |
| 48 namespace protocol { | 47 namespace protocol { |
| 49 class Dispatcher; | 48 class Dispatcher; |
| 50 class Frontend; | 49 class Frontend; |
| 51 class FrontendChannel; | 50 class FrontendChannel; |
| 52 } | 51 } |
| 53 | 52 |
| 54 class WorkerInspectorController final : public GarbageCollectedFinalized<WorkerI
nspectorController>, public InspectorSession::Client { | 53 class WorkerInspectorController final : public GarbageCollectedFinalized<WorkerI
nspectorController>, public InspectorSession::Client { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 74 | 73 |
| 75 WorkerThreadDebugger* m_debugger; | 74 WorkerThreadDebugger* m_debugger; |
| 76 WorkerThread* m_thread; | 75 WorkerThread* m_thread; |
| 77 Member<InstrumentingAgents> m_instrumentingAgents; | 76 Member<InstrumentingAgents> m_instrumentingAgents; |
| 78 Member<InspectorSession> m_session; | 77 Member<InspectorSession> m_session; |
| 79 }; | 78 }; |
| 80 | 79 |
| 81 } // namespace blink | 80 } // namespace blink |
| 82 | 81 |
| 83 #endif // WorkerInspectorController_h | 82 #endif // WorkerInspectorController_h |
| OLD | NEW |