Title: [90390] trunk/Source/WebCore
Revision
90390
Author
vse...@chromium.org
Date
2011-07-05 03:36:06 -0700 (Tue, 05 Jul 2011)

Log Message

2011-07-05  Vsevolod Vlasov  <vse...@chromium.org>

        Unreviewed; Qt Linux Release minimal compile fix.

        * testing/Internals.h:
        (WebCore::Internals::setInspectorResourcesDataSizeLimits):
        * testing/Internals.idl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (90389 => 90390)


--- trunk/Source/WebCore/ChangeLog	2011-07-05 10:16:36 UTC (rev 90389)
+++ trunk/Source/WebCore/ChangeLog	2011-07-05 10:36:06 UTC (rev 90390)
@@ -1,5 +1,13 @@
 2011-07-05  Vsevolod Vlasov  <vse...@chromium.org>
 
+        Unreviewed; Qt Linux Release minimal compile fix.
+
+        * testing/Internals.h:
+        (WebCore::Internals::setInspectorResourcesDataSizeLimits):
+        * testing/Internals.idl:
+
+2011-07-05  Vsevolod Vlasov  <vse...@chromium.org>
+
         Web Inspector: Show content for plugin requests in network panel.
         https://bugs.webkit.org/show_bug.cgi?id=30080
 

Modified: trunk/Source/WebCore/testing/Internals.h (90389 => 90390)


--- trunk/Source/WebCore/testing/Internals.h	2011-07-05 10:16:36 UTC (rev 90389)
+++ trunk/Source/WebCore/testing/Internals.h	2011-07-05 10:36:06 UTC (rev 90390)
@@ -55,6 +55,8 @@
 
 #if ENABLE(INSPECTOR)
     void setInspectorResourcesDataSizeLimits(Document*, int maximumResourcesContentSize, int maximumSingleResourceContentSize, ExceptionCode&);
+#else
+    void setInspectorResourcesDataSizeLimits(Document*, int maximumResourcesContentSize, int maximumSingleResourceContentSize, ExceptionCode&) { }
 #endif
 
 private:

Modified: trunk/Source/WebCore/testing/Internals.idl (90389 => 90390)


--- trunk/Source/WebCore/testing/Internals.idl	2011-07-05 10:16:36 UTC (rev 90389)
+++ trunk/Source/WebCore/testing/Internals.idl	2011-07-05 10:36:06 UTC (rev 90390)
@@ -36,7 +36,7 @@
         DOMString shadowPseudoId(in Element element) raises (DOMException);
         Element createShadowContentElement(in Document document) raises(DOMException);
 
-        [Conditional=INSPECTOR] void setInspectorResourcesDataSizeLimits(in Document document, in long maximumResourcesContentSize, in long maximumSingleResourceContentSize) raises(DOMException);
+        void setInspectorResourcesDataSizeLimits(in Document document, in long maximumResourcesContentSize, in long maximumSingleResourceContentSize) raises(DOMException);
     };
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to