Changeset 161791 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Jan 11, 2014, 6:56:20 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r161789 r161791 1 2014-01-11 Anders Carlsson <[email protected]> 2 3 Try something else. 4 5 * inspector/InspectorAgentRegistry.cpp: 6 (Inspector::InspectorAgentRegistry::~InspectorAgentRegistry): 7 * inspector/InspectorAgentRegistry.h: 8 1 9 2014-01-11 Dean Jackson <[email protected]> 2 10 -
trunk/Source/JavaScriptCore/inspector/InspectorAgentRegistry.cpp
r161788 r161791 30 30 #if ENABLE(INSPECTOR) 31 31 32 #include "InspectorAgentBase.h" 33 32 34 namespace Inspector { 33 35 34 36 InspectorAgentRegistry::InspectorAgentRegistry() 37 { 38 } 39 40 InspectorAgentRegistry::~InspectorAgentRegistry() 35 41 { 36 42 } -
trunk/Source/JavaScriptCore/inspector/InspectorAgentRegistry.h
r161788 r161791 28 28 #define InspectorAgentRegistry_h 29 29 30 #include "InspectorAgentBase.h"31 30 #include <wtf/Vector.h> 32 31 33 32 namespace Inspector { 34 33 34 class InspectorAgentBase; 35 35 class InspectorBackendDispatcher; 36 36 class InspectorFrontendChannel; … … 39 39 public: 40 40 InspectorAgentRegistry(); 41 ~InspectorAgentRegistry(); 41 42 42 43 void append(std::unique_ptr<InspectorAgentBase>);
Note:
See TracChangeset
for help on using the changeset viewer.