| 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/HashMap.h" | 37 #include "wtf/HashMap.h" |
| 38 | 38 |
| 39 namespace blink { | 39 namespace blink { |
| 40 class InstrumentingAgents; | 40 class InstrumentingAgents; |
| 41 class JSONObject; | 41 class JSONObject; |
| 42 class KURL; | 42 class KURL; |
| 43 class WorkerInspectorProxy; | 43 class WorkerInspectorProxy; |
| 44 | 44 |
| 45 typedef String ErrorString; | 45 typedef String ErrorString; |
| 46 | 46 |
| 47 class InspectorWorkerAgent FINAL : public InspectorBaseAgent<InspectorWorkerAgen
t>, public InspectorBackendDispatcher::WorkerCommandHandler { | 47 class InspectorWorkerAgent final : public InspectorBaseAgent<InspectorWorkerAgen
t>, public InspectorBackendDispatcher::WorkerCommandHandler { |
| 48 public: | 48 public: |
| 49 static PassOwnPtrWillBeRawPtr<InspectorWorkerAgent> create(); | 49 static PassOwnPtrWillBeRawPtr<InspectorWorkerAgent> create(); |
| 50 virtual ~InspectorWorkerAgent(); | 50 virtual ~InspectorWorkerAgent(); |
| 51 | 51 |
| 52 virtual void init() OVERRIDE; | 52 virtual void init() override; |
| 53 virtual void setFrontend(InspectorFrontend*) OVERRIDE; | 53 virtual void setFrontend(InspectorFrontend*) override; |
| 54 virtual void restore() OVERRIDE; | 54 virtual void restore() override; |
| 55 virtual void clearFrontend() OVERRIDE; | 55 virtual void clearFrontend() override; |
| 56 | 56 |
| 57 // Called from InspectorInstrumentation | 57 // Called from InspectorInstrumentation |
| 58 bool shouldPauseDedicatedWorkerOnStart(); | 58 bool shouldPauseDedicatedWorkerOnStart(); |
| 59 void didStartWorker(WorkerInspectorProxy*, const KURL&); | 59 void didStartWorker(WorkerInspectorProxy*, const KURL&); |
| 60 void workerTerminated(WorkerInspectorProxy*); | 60 void workerTerminated(WorkerInspectorProxy*); |
| 61 | 61 |
| 62 // Called from InspectorBackendDispatcher | 62 // Called from InspectorBackendDispatcher |
| 63 virtual void enable(ErrorString*) OVERRIDE; | 63 virtual void enable(ErrorString*) override; |
| 64 virtual void disable(ErrorString*) OVERRIDE; | 64 virtual void disable(ErrorString*) override; |
| 65 virtual void canInspectWorkers(ErrorString*, bool*) OVERRIDE; | 65 virtual void canInspectWorkers(ErrorString*, bool*) override; |
| 66 virtual void connectToWorker(ErrorString*, int workerId) OVERRIDE; | 66 virtual void connectToWorker(ErrorString*, int workerId) override; |
| 67 virtual void disconnectFromWorker(ErrorString*, int workerId) OVERRIDE; | 67 virtual void disconnectFromWorker(ErrorString*, int workerId) override; |
| 68 virtual void sendMessageToWorker(ErrorString*, int workerId, const RefPtr<JS
ONObject>& message) OVERRIDE; | 68 virtual void sendMessageToWorker(ErrorString*, int workerId, const RefPtr<JS
ONObject>& message) override; |
| 69 virtual void setAutoconnectToWorkers(ErrorString*, bool value) OVERRIDE; | 69 virtual void setAutoconnectToWorkers(ErrorString*, bool value) override; |
| 70 | 70 |
| 71 void setTracingSessionId(const String&); | 71 void setTracingSessionId(const String&); |
| 72 | 72 |
| 73 private: | 73 private: |
| 74 InspectorWorkerAgent(); | 74 InspectorWorkerAgent(); |
| 75 void createWorkerFrontendChannelsForExistingWorkers(); | 75 void createWorkerFrontendChannelsForExistingWorkers(); |
| 76 void createWorkerFrontendChannel(WorkerInspectorProxy*, const String& url); | 76 void createWorkerFrontendChannel(WorkerInspectorProxy*, const String& url); |
| 77 void destroyWorkerFrontendChannels(); | 77 void destroyWorkerFrontendChannels(); |
| 78 | 78 |
| 79 InspectorFrontend::Worker* m_frontend; | 79 InspectorFrontend::Worker* m_frontend; |
| 80 | 80 |
| 81 class WorkerFrontendChannel; | 81 class WorkerFrontendChannel; |
| 82 typedef HashMap<int, WorkerFrontendChannel*> WorkerChannels; | 82 typedef HashMap<int, WorkerFrontendChannel*> WorkerChannels; |
| 83 WorkerChannels m_idToChannel; | 83 WorkerChannels m_idToChannel; |
| 84 typedef HashMap<WorkerInspectorProxy*, String> WorkerIds; | 84 typedef HashMap<WorkerInspectorProxy*, String> WorkerIds; |
| 85 WorkerIds m_workerIds; | 85 WorkerIds m_workerIds; |
| 86 String m_tracingSessionId; | 86 String m_tracingSessionId; |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 } // namespace blink | 89 } // namespace blink |
| 90 | 90 |
| 91 #endif // !defined(InspectorWorkerAgent_h) | 91 #endif // !defined(InspectorWorkerAgent_h) |
| OLD | NEW |