Title: [129464] trunk/Source/WebCore
Revision
129464
Author
[email protected]
Date
2012-09-25 00:33:33 -0700 (Tue, 25 Sep 2012)

Log Message

REGRESSION(r129346): It broke !ENABLE(INSPECTOR) build
https://bugs.webkit.org/show_bug.cgi?id=97490

Patch by Vivek Galatage <[email protected]> on 2012-09-25
Reviewed by Csaba Osztrogonác.

The dummy class implementation must be under the ENABLE(INSPECTOR)
guard. Added them to prevent from braking the build with --minimal
option for build-webkit

No new tests as caused by missing compile guard.

* testing/Internals.cpp:
(WebCore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (129463 => 129464)


--- trunk/Source/WebCore/ChangeLog	2012-09-25 07:04:20 UTC (rev 129463)
+++ trunk/Source/WebCore/ChangeLog	2012-09-25 07:33:33 UTC (rev 129464)
@@ -1,3 +1,19 @@
+2012-09-25  Vivek Galatage  <[email protected]>
+
+        REGRESSION(r129346): It broke !ENABLE(INSPECTOR) build
+        https://bugs.webkit.org/show_bug.cgi?id=97490
+
+        Reviewed by Csaba Osztrogonác.
+
+        The dummy class implementation must be under the ENABLE(INSPECTOR)
+        guard. Added them to prevent from braking the build with --minimal
+        option for build-webkit
+
+        No new tests as caused by missing compile guard.
+
+        * testing/Internals.cpp:
+        (WebCore):
+
 2012-09-24  Bo Liu  <[email protected]>
 
         Reland "Add in-place reload behavior to ImagesEnabled setting" with optimizations

Modified: trunk/Source/WebCore/testing/Internals.cpp (129463 => 129464)


--- trunk/Source/WebCore/testing/Internals.cpp	2012-09-25 07:04:20 UTC (rev 129463)
+++ trunk/Source/WebCore/testing/Internals.cpp	2012-09-25 07:33:33 UTC (rev 129464)
@@ -109,6 +109,7 @@
 
 using namespace HTMLNames;
 
+#if ENABLE(INSPECTOR)
 class InspectorFrontendClientDummy : public InspectorFrontendClientLocal {
 public:
     InspectorFrontendClientDummy(InspectorController*, Page*);
@@ -152,6 +153,7 @@
 {
     return InspectorClient::doDispatchMessageOnFrontendPage(m_frontendPage, message);
 }
+#endif // ENABLE(INSPECTOR)
 
 static bool markerTypesFrom(const String& markerType, DocumentMarker::MarkerTypes& result)
 {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to