Title: [90188] trunk/Source/WebCore
- Revision
- 90188
- Author
- [email protected]
- Date
- 2011-06-30 17:28:06 -0700 (Thu, 30 Jun 2011)
Log Message
2011-06-30 Gwang Yoon Hwang <[email protected]>
Reviewed by Nate Chapin.
[V8] Add ENABLE(INSPECTOR) guards around v8 custom bindings.
https://bugs.webkit.org/show_bug.cgi?id=63442
No new tests needed.
* bindings/v8/custom/V8InjectedScriptHostCustom.cpp:
* bindings/v8/custom/V8InspectorFrontendHostCustom.cpp:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (90187 => 90188)
--- trunk/Source/WebCore/ChangeLog 2011-07-01 00:10:23 UTC (rev 90187)
+++ trunk/Source/WebCore/ChangeLog 2011-07-01 00:28:06 UTC (rev 90188)
@@ -1,3 +1,15 @@
+2011-06-30 Gwang Yoon Hwang <[email protected]>
+
+ Reviewed by Nate Chapin.
+
+ [V8] Add ENABLE(INSPECTOR) guards around v8 custom bindings.
+ https://bugs.webkit.org/show_bug.cgi?id=63442
+
+ No new tests needed.
+
+ * bindings/v8/custom/V8InjectedScriptHostCustom.cpp:
+ * bindings/v8/custom/V8InspectorFrontendHostCustom.cpp:
+
2011-06-30 Levi Weintraub <[email protected]>
Reviewed by Eric Seidel.
Modified: trunk/Source/WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp (90187 => 90188)
--- trunk/Source/WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp 2011-07-01 00:10:23 UTC (rev 90187)
+++ trunk/Source/WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp 2011-07-01 00:28:06 UTC (rev 90188)
@@ -29,6 +29,7 @@
*/
#include "config.h"
+#if ENABLE(INSPECTOR)
#include "V8InjectedScriptHost.h"
#include "Database.h"
@@ -192,3 +193,5 @@
}
} // namespace WebCore
+
+#endif // ENABLE(INSPECTOR)
Modified: trunk/Source/WebCore/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp (90187 => 90188)
--- trunk/Source/WebCore/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp 2011-07-01 00:10:23 UTC (rev 90187)
+++ trunk/Source/WebCore/bindings/v8/custom/V8InspectorFrontendHostCustom.cpp 2011-07-01 00:28:06 UTC (rev 90188)
@@ -29,6 +29,7 @@
*/
#include "config.h"
+#if ENABLE(INSPECTOR)
#include "V8InspectorFrontendHost.h"
#include "InspectorController.h"
@@ -114,3 +115,5 @@
}
} // namespace WebCore
+
+#endif // ENABLE(INSPECTOR)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes