Title: [161788] trunk/Source/_javascript_Core
Revision
161788
Author
[email protected]
Date
2014-01-11 18:49:22 -0800 (Sat, 11 Jan 2014)

Log Message

Try to fix the build by introducing a constructor.

* inspector/InspectorAgentRegistry.cpp:
(Inspector::InspectorAgentRegistry::InspectorAgentRegistry):
* inspector/InspectorAgentRegistry.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (161787 => 161788)


--- trunk/Source/_javascript_Core/ChangeLog	2014-01-12 02:43:33 UTC (rev 161787)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-01-12 02:49:22 UTC (rev 161788)
@@ -1,7 +1,15 @@
 2014-01-11  Anders Carlsson  <[email protected]>
 
+        Try to fix the build by introducing a constructor.
+
+        * inspector/InspectorAgentRegistry.cpp:
+        (Inspector::InspectorAgentRegistry::InspectorAgentRegistry):
         * inspector/InspectorAgentRegistry.h:
 
+2014-01-11  Anders Carlsson  <[email protected]>
+
+        * inspector/InspectorAgentRegistry.h:
+
         Remove an unused function.
 
 2014-01-11  Anders Carlsson  <[email protected]>

Modified: trunk/Source/_javascript_Core/inspector/InspectorAgentRegistry.cpp (161787 => 161788)


--- trunk/Source/_javascript_Core/inspector/InspectorAgentRegistry.cpp	2014-01-12 02:43:33 UTC (rev 161787)
+++ trunk/Source/_javascript_Core/inspector/InspectorAgentRegistry.cpp	2014-01-12 02:49:22 UTC (rev 161788)
@@ -31,6 +31,10 @@
 
 namespace Inspector {
 
+InspectorAgentRegistry::InspectorAgentRegistry()
+{
+}
+
 void InspectorAgentRegistry::append(std::unique_ptr<InspectorAgentBase> agent)
 {
     m_agents.append(std::move(agent));

Modified: trunk/Source/_javascript_Core/inspector/InspectorAgentRegistry.h (161787 => 161788)


--- trunk/Source/_javascript_Core/inspector/InspectorAgentRegistry.h	2014-01-12 02:43:33 UTC (rev 161787)
+++ trunk/Source/_javascript_Core/inspector/InspectorAgentRegistry.h	2014-01-12 02:49:22 UTC (rev 161788)
@@ -37,6 +37,8 @@
 
 class JS_EXPORT_PRIVATE InspectorAgentRegistry {
 public:
+    InspectorAgentRegistry();
+
     void append(std::unique_ptr<InspectorAgentBase>);
 
     void didCreateFrontendAndBackend(InspectorFrontendChannel*, InspectorBackendDispatcher*);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to