Title: [137026] trunk/Source/WebCore
Revision
137026
Author
rn...@webkit.org
Date
2012-12-08 02:52:06 -0800 (Sat, 08 Dec 2012)

Log Message

Qt Linux Minimal build fix attempt after r136959.

* inspector/InspectorInstrumentation.h:
(WebCore::InspectorInstrumentation::layerTreeDidChange):
(WebCore::InspectorInstrumentation::renderLayerDestroyed):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (137025 => 137026)


--- trunk/Source/WebCore/ChangeLog	2012-12-08 10:44:27 UTC (rev 137025)
+++ trunk/Source/WebCore/ChangeLog	2012-12-08 10:52:06 UTC (rev 137026)
@@ -1,3 +1,11 @@
+2012-12-08  Ryosuke Niwa  <rn...@webkit.org>
+
+        Qt Linux Minimal build fix attempt after r136959.
+
+        * inspector/InspectorInstrumentation.h:
+        (WebCore::InspectorInstrumentation::layerTreeDidChange):
+        (WebCore::InspectorInstrumentation::renderLayerDestroyed):
+
 2012-12-08  Xan Lopez  <xlo...@igalia.com>
 
         Build fix after r137003. Wrap Microdata only sections with ENABLE(MICRODATA).

Modified: trunk/Source/WebCore/inspector/InspectorInstrumentation.h (137025 => 137026)


--- trunk/Source/WebCore/inspector/InspectorInstrumentation.h	2012-12-08 10:44:27 UTC (rev 137025)
+++ trunk/Source/WebCore/inspector/InspectorInstrumentation.h	2012-12-08 10:52:06 UTC (rev 137026)
@@ -1547,14 +1547,23 @@
 #if USE(ACCELERATED_COMPOSITING)
 inline void InspectorInstrumentation::layerTreeDidChange(Page* page)
 {
+#if ENABLE(INSPECTOR)
     if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
         layerTreeDidChangeImpl(instrumentingAgents);
+#else
+    UNUSED_PARAM(page);
+#endif
 }
 
 inline void InspectorInstrumentation::renderLayerDestroyed(Page* page, const RenderLayer* renderLayer)
 {
+#if ENABLE(INSPECTOR)
     if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
         renderLayerDestroyedImpl(instrumentingAgents, renderLayer);
+#else
+    UNUSED_PARAM(page);
+    UNUSED_PARAM(renderLayer);
+#endif
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to