| 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 28 matching lines...) Expand all Loading... |
| 39 #include "InspectorConsoleAgent.h" | 39 #include "InspectorConsoleAgent.h" |
| 40 #include "InspectorFrontend.h" | 40 #include "InspectorFrontend.h" |
| 41 #include "InspectorFrontendChannel.h" | 41 #include "InspectorFrontendChannel.h" |
| 42 #include "InspectorHeapProfilerAgent.h" | 42 #include "InspectorHeapProfilerAgent.h" |
| 43 #include "InspectorProfilerAgent.h" | 43 #include "InspectorProfilerAgent.h" |
| 44 #include "InspectorState.h" | 44 #include "InspectorState.h" |
| 45 #include "InspectorStateClient.h" | 45 #include "InspectorStateClient.h" |
| 46 #include "InspectorTimelineAgent.h" | 46 #include "InspectorTimelineAgent.h" |
| 47 #include "InstrumentingAgents.h" | 47 #include "InstrumentingAgents.h" |
| 48 #include "WorkerConsoleAgent.h" | 48 #include "WorkerConsoleAgent.h" |
| 49 #include "WorkerContext.h" | |
| 50 #include "WorkerDebuggerAgent.h" | 49 #include "WorkerDebuggerAgent.h" |
| 51 #include "WorkerReportingProxy.h" | |
| 52 #include "WorkerRuntimeAgent.h" | 50 #include "WorkerRuntimeAgent.h" |
| 53 #include "WorkerThread.h" | 51 #include "core/workers/WorkerContext.h" |
| 52 #include "core/workers/WorkerReportingProxy.h" |
| 53 #include "core/workers/WorkerThread.h" |
| 54 #include <wtf/PassOwnPtr.h> | 54 #include <wtf/PassOwnPtr.h> |
| 55 | 55 |
| 56 namespace WebCore { | 56 namespace WebCore { |
| 57 | 57 |
| 58 namespace { | 58 namespace { |
| 59 | 59 |
| 60 class PageInspectorProxy : public InspectorFrontendChannel { | 60 class PageInspectorProxy : public InspectorFrontendChannel { |
| 61 WTF_MAKE_FAST_ALLOCATED; | 61 WTF_MAKE_FAST_ALLOCATED; |
| 62 public: | 62 public: |
| 63 explicit PageInspectorProxy(WorkerContext* workerContext) : m_workerContext(
workerContext) { } | 63 explicit PageInspectorProxy(WorkerContext* workerContext) : m_workerContext(
workerContext) { } |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 m_backendDispatcher->dispatch(message); | 166 m_backendDispatcher->dispatch(message); |
| 167 } | 167 } |
| 168 | 168 |
| 169 void WorkerInspectorController::resume() | 169 void WorkerInspectorController::resume() |
| 170 { | 170 { |
| 171 ErrorString unused; | 171 ErrorString unused; |
| 172 m_runtimeAgent->run(&unused); | 172 m_runtimeAgent->run(&unused); |
| 173 } | 173 } |
| 174 | 174 |
| 175 } | 175 } |
| OLD | NEW |