| 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 26 matching lines...) Expand all Loading... |
| 37 #include "wtf/Noncopyable.h" | 37 #include "wtf/Noncopyable.h" |
| 38 #include "wtf/OwnPtr.h" | 38 #include "wtf/OwnPtr.h" |
| 39 #include "wtf/RefPtr.h" | 39 #include "wtf/RefPtr.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class InjectedScriptManager; | 43 class InjectedScriptManager; |
| 44 class InspectorBackendDispatcher; | 44 class InspectorBackendDispatcher; |
| 45 class InspectorFrontend; | 45 class InspectorFrontend; |
| 46 class InspectorFrontendChannel; | 46 class InspectorFrontendChannel; |
| 47 class InspectorState; | |
| 48 class InspectorStateClient; | 47 class InspectorStateClient; |
| 49 class InstrumentingAgents; | 48 class InstrumentingAgents; |
| 50 class WorkerDebuggerAgent; | 49 class WorkerDebuggerAgent; |
| 51 class WorkerGlobalScope; | 50 class WorkerGlobalScope; |
| 52 class WorkerScriptDebugServer; | 51 class WorkerScriptDebugServer; |
| 53 | 52 |
| 54 class WorkerInspectorController : public RefCountedWillBeGarbageCollectedFinaliz
ed<WorkerInspectorController> { | 53 class WorkerInspectorController : public RefCountedWillBeGarbageCollectedFinaliz
ed<WorkerInspectorController> { |
| 55 WTF_MAKE_NONCOPYABLE(WorkerInspectorController); | 54 WTF_MAKE_NONCOPYABLE(WorkerInspectorController); |
| 56 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; | 55 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; |
| 57 public: | 56 public: |
| (...skipping 21 matching lines...) Expand all Loading... |
| 79 InspectorAgentRegistry m_agents; | 78 InspectorAgentRegistry m_agents; |
| 80 OwnPtr<InspectorFrontendChannel> m_frontendChannel; | 79 OwnPtr<InspectorFrontendChannel> m_frontendChannel; |
| 81 OwnPtr<InspectorFrontend> m_frontend; | 80 OwnPtr<InspectorFrontend> m_frontend; |
| 82 RefPtrWillBeMember<InspectorBackendDispatcher> m_backendDispatcher; | 81 RefPtrWillBeMember<InspectorBackendDispatcher> m_backendDispatcher; |
| 83 RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent; | 82 RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent; |
| 84 }; | 83 }; |
| 85 | 84 |
| 86 } | 85 } |
| 87 | 86 |
| 88 #endif // !defined(WorkerInspectorController_h) | 87 #endif // !defined(WorkerInspectorController_h) |
| OLD | NEW |