Title: [101085] trunk/Source/WebCore
Revision
101085
Author
[email protected]
Date
2011-11-23 08:04:50 -0800 (Wed, 23 Nov 2011)

Log Message

2011-11-23  Yury Semikhatsky  <[email protected]>

        Unreviewed. Build fix. Added missing ENABLE(WORKERS) guards.

        * inspector/WorkerConsoleAgent.cpp:
        * inspector/WorkerConsoleAgent.h:
        * inspector/WorkerRuntimeAgent.cpp:
        * inspector/WorkerRuntimeAgent.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (101084 => 101085)


--- trunk/Source/WebCore/ChangeLog	2011-11-23 15:53:18 UTC (rev 101084)
+++ trunk/Source/WebCore/ChangeLog	2011-11-23 16:04:50 UTC (rev 101085)
@@ -1,3 +1,12 @@
+2011-11-23  Yury Semikhatsky  <[email protected]>
+
+        Unreviewed. Build fix. Added missing ENABLE(WORKERS) guards.
+
+        * inspector/WorkerConsoleAgent.cpp:
+        * inspector/WorkerConsoleAgent.h:
+        * inspector/WorkerRuntimeAgent.cpp:
+        * inspector/WorkerRuntimeAgent.h:
+
 2011-11-23  Philippe Normand  <[email protected]>
 
         [GStreamer] improper usage of gst_object_ref_sink

Modified: trunk/Source/WebCore/inspector/WorkerConsoleAgent.cpp (101084 => 101085)


--- trunk/Source/WebCore/inspector/WorkerConsoleAgent.cpp	2011-11-23 15:53:18 UTC (rev 101084)
+++ trunk/Source/WebCore/inspector/WorkerConsoleAgent.cpp	2011-11-23 16:04:50 UTC (rev 101085)
@@ -32,7 +32,7 @@
 
 #include "WorkerConsoleAgent.h"
 
-#if ENABLE(INSPECTOR)
+#if ENABLE(INSPECTOR) && ENABLE(WORKERS)
 
 namespace WebCore {
 
@@ -57,4 +57,4 @@
 
 } // namespace WebCore
 
-#endif // ENABLE(INSPECTOR)
+#endif // ENABLE(INSPECTOR) && ENABLE(WORKERS)

Modified: trunk/Source/WebCore/inspector/WorkerConsoleAgent.h (101084 => 101085)


--- trunk/Source/WebCore/inspector/WorkerConsoleAgent.h	2011-11-23 15:53:18 UTC (rev 101084)
+++ trunk/Source/WebCore/inspector/WorkerConsoleAgent.h	2011-11-23 16:04:50 UTC (rev 101085)
@@ -33,7 +33,7 @@
 
 #include "InspectorConsoleAgent.h"
 
-#if ENABLE(INSPECTOR)
+#if ENABLE(INSPECTOR) && ENABLE(WORKERS)
 
 namespace WebCore {
 
@@ -50,6 +50,6 @@
 
 } // namespace WebCore
 
-#endif // ENABLE(INSPECTOR)
+#endif // ENABLE(INSPECTOR) && ENABLE(WORKERS)
 
 #endif // !defined(WorkerConsoleAgent_h)

Modified: trunk/Source/WebCore/inspector/WorkerRuntimeAgent.cpp (101084 => 101085)


--- trunk/Source/WebCore/inspector/WorkerRuntimeAgent.cpp	2011-11-23 15:53:18 UTC (rev 101084)
+++ trunk/Source/WebCore/inspector/WorkerRuntimeAgent.cpp	2011-11-23 16:04:50 UTC (rev 101085)
@@ -32,7 +32,7 @@
 
 #include "WorkerRuntimeAgent.h"
 
-#if ENABLE(INSPECTOR)
+#if ENABLE(INSPECTOR) && ENABLE(WORKERS)
 
 #include "ScriptState.h"
 
@@ -60,4 +60,4 @@
 
 } // namespace WebCore
 
-#endif // ENABLE(INSPECTOR)
+#endif // ENABLE(INSPECTOR) && ENABLE(WORKERS)

Modified: trunk/Source/WebCore/inspector/WorkerRuntimeAgent.h (101084 => 101085)


--- trunk/Source/WebCore/inspector/WorkerRuntimeAgent.h	2011-11-23 15:53:18 UTC (rev 101084)
+++ trunk/Source/WebCore/inspector/WorkerRuntimeAgent.h	2011-11-23 16:04:50 UTC (rev 101085)
@@ -31,7 +31,7 @@
 #ifndef WorkerRuntimeAgent_h
 #define WorkerRuntimeAgent_h
 
-#if ENABLE(INSPECTOR)
+#if ENABLE(INSPECTOR) && ENABLE(WORKERS)
 
 #include "InspectorRuntimeAgent.h"
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to