Title: [88547] trunk/Source/WebCore
Revision
88547
Author
[email protected]
Date
2011-06-10 10:29:08 -0700 (Fri, 10 Jun 2011)

Log Message

2011-06-10  Konstantin Tokarev  <[email protected]>

        Reviewed by Joseph Pecoraro.

        Fixed build with enabled workers and disabled inspector
        https://bugs.webkit.org/show_bug.cgi?id=62461

        * inspector/InspectorWorkerAgent.cpp: Added inspector guard

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (88546 => 88547)


--- trunk/Source/WebCore/ChangeLog	2011-06-10 17:05:31 UTC (rev 88546)
+++ trunk/Source/WebCore/ChangeLog	2011-06-10 17:29:08 UTC (rev 88547)
@@ -1,3 +1,12 @@
+2011-06-10  Konstantin Tokarev  <[email protected]>
+
+        Reviewed by Joseph Pecoraro.
+
+        Fixed build with enabled workers and disabled inspector
+        https://bugs.webkit.org/show_bug.cgi?id=62461
+
+        * inspector/InspectorWorkerAgent.cpp: Added inspector guard
+
 2011-06-10  Darin Adler  <[email protected]>
 
         Reviewed by Eric Carlson.

Modified: trunk/Source/WebCore/inspector/InspectorWorkerAgent.cpp (88546 => 88547)


--- trunk/Source/WebCore/inspector/InspectorWorkerAgent.cpp	2011-06-10 17:05:31 UTC (rev 88546)
+++ trunk/Source/WebCore/inspector/InspectorWorkerAgent.cpp	2011-06-10 17:29:08 UTC (rev 88547)
@@ -30,7 +30,7 @@
 
 #include "config.h"
 
-#if ENABLE(WORKERS)
+#if ENABLE(WORKERS) && ENABLE(INSPECTOR)
 
 #include "InspectorWorkerAgent.h"
 
@@ -197,4 +197,4 @@
 
 } // namespace WebCore
 
-#endif // ENABLE(WORKERS)
+#endif // ENABLE(WORKERS) && ENABLE(INSPECTOR)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to