Title: [129556] trunk/Source/WebKit2
- Revision
- 129556
- Author
- [email protected]
- Date
- 2012-09-25 14:40:23 -0700 (Tue, 25 Sep 2012)
Log Message
Build fix. I removed this function as a part of
https://bugs.webkit.org/show_bug.cgi?id=95397 but it is
still needed for nightlies and open source builds.
* WebProcess/InjectedBundle/API/c/WKBundlePage.cpp:
(WKBundlePageSetPaintedObjectsCounterThreshold):
* WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h:
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (129555 => 129556)
--- trunk/Source/WebKit2/ChangeLog 2012-09-25 21:22:08 UTC (rev 129555)
+++ trunk/Source/WebKit2/ChangeLog 2012-09-25 21:40:23 UTC (rev 129556)
@@ -1,5 +1,15 @@
2012-09-25 Beth Dakin <[email protected]>
+ Build fix. I removed this function as a part of
+ https://bugs.webkit.org/show_bug.cgi?id=95397 but it is
+ still needed for nightlies and open source builds.
+
+ * WebProcess/InjectedBundle/API/c/WKBundlePage.cpp:
+ (WKBundlePageSetPaintedObjectsCounterThreshold):
+ * WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h:
+
+2012-09-25 Beth Dakin <[email protected]>
+
https://bugs.webkit.org/show_bug.cgi?id=95397
Need to merge didFirstVisuallyNonEmptyLayout and
didNewFirstVisuallyNonEmptyLayout
Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp (129555 => 129556)
--- trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp 2012-09-25 21:22:08 UTC (rev 129555)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp 2012-09-25 21:40:23 UTC (rev 129556)
@@ -375,6 +375,12 @@
return toAPI(WebRenderLayer::create(toImpl(pageRef)).leakRef());
}
+void WKBundlePageSetPaintedObjectsCounterThreshold(WKBundlePageRef, uint64_t)
+{
+ // FIXME: This function is only still here to keep open source Mac builds building.
+ // We should remove it as soon as we can.
+}
+
void WKBundlePageSetTracksRepaints(WKBundlePageRef pageRef, bool trackRepaints)
{
toImpl(pageRef)->setTracksRepaints(trackRepaints);
Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h (129555 => 129556)
--- trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h 2012-09-25 21:22:08 UTC (rev 129555)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h 2012-09-25 21:40:23 UTC (rev 129556)
@@ -58,6 +58,10 @@
WK_EXPORT WKRenderObjectRef WKBundlePageCopyRenderTree(WKBundlePageRef page);
WK_EXPORT WKRenderLayerRef WKBundlePageCopyRenderLayerTree(WKBundlePageRef page);
+// FIXME: This function is only still here to keep open source Mac builds building. It doesn't do anything anymore!
+// We should remove it as soon as we can.
+WK_EXPORT void WKBundlePageSetPaintedObjectsCounterThreshold(WKBundlePageRef page, uint64_t threshold);
+
WK_EXPORT void WKBundlePageSetTracksRepaints(WKBundlePageRef page, bool trackRepaints);
WK_EXPORT bool WKBundlePageIsTrackingRepaints(WKBundlePageRef page);
WK_EXPORT void WKBundlePageResetTrackedRepaints(WKBundlePageRef page);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes