[Webkit-unassigned] [Bug 54009] New: [WK2] LayerTreeContext is used outside the ACCELERATED_COMPOSITING guards but not defined in DrawingAreaProxy.h
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Feb 8 08:56:11 PST 2011
https://bugs.webkit.org/show_bug.cgi?id=54009
Summary: [WK2] LayerTreeContext is used outside the
ACCELERATED_COMPOSITING guards but not defined in
DrawingAreaProxy.h
Product: WebKit
Version: 528+ (Nightly build)
Platform: PC
OS/Version: Linux
Status: NEW
Severity: Normal
Priority: P2
Component: WebKit2
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: alex at igalia.com
CC: andersca at apple.com
Blocks: 52805
After r77546 LayerTreeContext is used outside the ACCELERATED_COMPOSITING guards:
diff --git a/Source/WebKit2/UIProcess/DrawingAreaProxy.h b/Source/WebKit2/UIProcess/DrawingAreaProxy.h
index 1639668..0e3b555 100644
--- a/Source/WebKit2/UIProcess/DrawingAreaProxy.h
+++ b/Source/WebKit2/UIProcess/DrawingAreaProxy.h
@@ -97,7 +97,7 @@ private:
// CoreIPC message handlers.
// FIXME: These should be pure virtual.
virtual void update(uint64_t sequenceNumber, const UpdateInfo&) { }
- virtual void didSetSize(uint64_t sequenceNumber, const UpdateInfo&) { }
+ virtual void didSetSize(uint64_t sequenceNumber, const UpdateInfo&, const LayerTreeContext&) { }
#if USE(ACCELERATED_COMPOSITING)
virtual void enterAcceleratedCompositingMode(uint64_t sequenceNumber, const LayerTreeContext&) { }
virtual void exitAcceleratedCompositingMode(uint64_t sequenceNumber) { }
But it is forward declared inside the guards in the same file.
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list