From 3f8474be5c0fdda3602c2028c79ccb6643dcc6c8 Mon Sep 17 00:00:00 2001 From: "carlosgc@webkit.org" Date: Wed, 26 Feb 2014 09:02:20 +0000 Subject: [PATCH] Unreviewed. Fix GTK+ build after r164702. * UIProcess/DrawingAreaProxy.cpp: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@164710 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebKit2/ChangeLog | 6 ++++++ Source/WebKit2/UIProcess/DrawingAreaProxy.cpp | 2 ++ 2 files changed, 8 insertions(+) diff --git a/Source/WebKit2/ChangeLog b/Source/WebKit2/ChangeLog index 12413fb..62fb1ff 100644 --- a/Source/WebKit2/ChangeLog +++ b/Source/WebKit2/ChangeLog @@ -1,3 +1,9 @@ +2014-02-26 Carlos Garcia Campos + + Unreviewed. Fix GTK+ build after r164702. + + * UIProcess/DrawingAreaProxy.cpp: + 2014-02-26 Martin Robinson [GTK] generate-gtkdoc can fail with WebKit1 or WebKit2 only builds diff --git a/Source/WebKit2/UIProcess/DrawingAreaProxy.cpp b/Source/WebKit2/UIProcess/DrawingAreaProxy.cpp index c1921c6..5d16497 100644 --- a/Source/WebKit2/UIProcess/DrawingAreaProxy.cpp +++ b/Source/WebKit2/UIProcess/DrawingAreaProxy.cpp @@ -87,6 +87,7 @@ void DrawingAreaProxy::exposedRectChangedTimerFired() } #endif // PLATFORM(MAC) +#if PLATFORM(COCOA) void DrawingAreaProxy::setCustomFixedPositionRect(const FloatRect& fixedPositionRect) { if (!m_webPageProxy->isValid()) @@ -94,5 +95,6 @@ void DrawingAreaProxy::setCustomFixedPositionRect(const FloatRect& fixedPosition m_webPageProxy->process().send(Messages::DrawingArea::SetCustomFixedPositionRect(fixedPositionRect), m_webPageProxy->pageID()); } +#endif } // namespace WebKit -- 1.8.3.1