Title: [97084] trunk/Source/WebCore
Revision
97084
Author
commit-qu...@webkit.org
Date
2011-10-10 14:14:37 -0700 (Mon, 10 Oct 2011)

Log Message

Add missing ifdef for _javascript__DEBUGGER feature.
https://bugs.webkit.org/show_bug.cgi?id=69758

Patch by Nayan Kumar K <naya...@motorola.com> on 2011-10-10
Reviewed by Adam Barth.

No new tests added since this is a build failure fix.

* bindings/v8/custom/V8ScriptProfileCustom.cpp:
* bindings/v8/custom/V8ScriptProfileNodeCustom.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (97083 => 97084)


--- trunk/Source/WebCore/ChangeLog	2011-10-10 21:02:38 UTC (rev 97083)
+++ trunk/Source/WebCore/ChangeLog	2011-10-10 21:14:37 UTC (rev 97084)
@@ -1,3 +1,15 @@
+2011-10-10  Nayan Kumar K  <naya...@motorola.com>
+
+        Add missing ifdef for _javascript__DEBUGGER feature.
+        https://bugs.webkit.org/show_bug.cgi?id=69758
+
+        Reviewed by Adam Barth.
+
+        No new tests added since this is a build failure fix.
+
+        * bindings/v8/custom/V8ScriptProfileCustom.cpp:
+        * bindings/v8/custom/V8ScriptProfileNodeCustom.cpp:
+
 2011-10-10  Simon Fraser  <simon.fra...@apple.com>
 
         REGRESSION(96070) 25% intl1 PLT regression from scrollbar invalidation

Modified: trunk/Source/WebCore/bindings/v8/custom/V8ScriptProfileCustom.cpp (97083 => 97084)


--- trunk/Source/WebCore/bindings/v8/custom/V8ScriptProfileCustom.cpp	2011-10-10 21:02:38 UTC (rev 97083)
+++ trunk/Source/WebCore/bindings/v8/custom/V8ScriptProfileCustom.cpp	2011-10-10 21:14:37 UTC (rev 97084)
@@ -29,6 +29,7 @@
  */
 
 #include "config.h"
+#if ENABLE(_javascript__DEBUGGER)
 #include "V8ScriptProfile.h"
 
 #include "ScriptProfile.h"
@@ -59,3 +60,5 @@
 }
 
 } // namespace WebCore
+
+#endif // ENABLE(_javascript__DEBUGGER)

Modified: trunk/Source/WebCore/bindings/v8/custom/V8ScriptProfileNodeCustom.cpp (97083 => 97084)


--- trunk/Source/WebCore/bindings/v8/custom/V8ScriptProfileNodeCustom.cpp	2011-10-10 21:02:38 UTC (rev 97083)
+++ trunk/Source/WebCore/bindings/v8/custom/V8ScriptProfileNodeCustom.cpp	2011-10-10 21:14:37 UTC (rev 97084)
@@ -29,6 +29,7 @@
  */
 
 #include "config.h"
+#if ENABLE(_javascript__DEBUGGER)
 #include "V8ScriptProfileNode.h"
 
 #include "ScriptProfileNode.h"
@@ -79,3 +80,5 @@
 }
 
 } // namespace WebCore
+
+#endif // ENABLE(_javascript__DEBUGGER)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to