Title: [142086] trunk/Source/WebCore
Revision
142086
Author
[email protected]
Date
2013-02-07 02:05:43 -0800 (Thu, 07 Feb 2013)

Log Message

Unreviewed fix for inspector tests in debug.
m_frontend should be initialized in constructor.

* inspector/InspectorMemoryAgent.cpp:
(WebCore::InspectorMemoryAgent::InspectorMemoryAgent):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (142085 => 142086)


--- trunk/Source/WebCore/ChangeLog	2013-02-07 09:37:42 UTC (rev 142085)
+++ trunk/Source/WebCore/ChangeLog	2013-02-07 10:05:43 UTC (rev 142086)
@@ -1,3 +1,11 @@
+2013-02-07  Ilya Tikhonovsky  <[email protected]>
+
+        Unreviewed fix for inspector tests in debug.
+        m_frontend should be initialized in constructor.
+
+        * inspector/InspectorMemoryAgent.cpp:
+        (WebCore::InspectorMemoryAgent::InspectorMemoryAgent):
+
 2013-02-07  Yury Semikhatsky  <[email protected]>
 
         Web Inspector: reduce number of native memory instrumentation categories

Modified: trunk/Source/WebCore/inspector/InspectorMemoryAgent.cpp (142085 => 142086)


--- trunk/Source/WebCore/inspector/InspectorMemoryAgent.cpp	2013-02-07 09:37:42 UTC (rev 142085)
+++ trunk/Source/WebCore/inspector/InspectorMemoryAgent.cpp	2013-02-07 10:05:43 UTC (rev 142086)
@@ -600,6 +600,7 @@
     : InspectorBaseAgent<InspectorMemoryAgent>("Memory", instrumentingAgents, state)
     , m_inspectorClient(client)
     , m_page(page)
+    , m_frontend(0)
 {
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to