Changeset 161793 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Jan 11, 2014, 7:23:25 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r161792 r161793 1 2014-01-11 Anders Carlsson <[email protected]> 2 3 Try again to fix the build. 4 5 * inspector/InspectorAgentRegistry.cpp: 6 * inspector/InspectorAgentRegistry.h: 7 1 8 2014-01-11 Anders Carlsson <[email protected]> 2 9 -
trunk/Source/JavaScriptCore/inspector/InspectorAgentRegistry.cpp
r161792 r161793 38 38 } 39 39 40 InspectorAgentRegistry::InspectorAgentRegistry(const InspectorAgentRegistry&)41 {42 }43 44 InspectorAgentRegistry::~InspectorAgentRegistry()45 {46 }47 48 40 void InspectorAgentRegistry::append(std::unique_ptr<InspectorAgentBase> agent) 49 41 { -
trunk/Source/JavaScriptCore/inspector/InspectorAgentRegistry.h
r161792 r161793 39 39 public: 40 40 InspectorAgentRegistry(); 41 ~InspectorAgentRegistry();42 43 InspectorAgentRegistry(const InspectorAgentRegistry&);44 41 45 42 void append(std::unique_ptr<InspectorAgentBase>); … … 50 47 51 48 private: 49 // These are declared here to avoid MSVC from trying to create default iplementations which would 50 // involve generating a copy constructor and copy assignment operator for the Vector of std::unique_ptrs. 51 InspectorAgentRegistry(const InspectorAgentRegistry&) WTF_DELETED_FUNCTION; 52 InspectorAgentRegistry& operator=(const InspectorAgentRegistry&) WTF_DELETED_FUNCTION; 53 52 54 Vector<std::unique_ptr<InspectorAgentBase>> m_agents; 53 55 };
Note:
See TracChangeset
for help on using the changeset viewer.