Title: [170297] trunk/Source/WebCore
- Revision
- 170297
- Author
- [email protected]
- Date
- 2014-06-23 10:07:54 -0700 (Mon, 23 Jun 2014)
Log Message
Remove unused FrameView::setUseCustomFixedPositionLayoutRect().
<https://webkit.org/b/134194>
Reviewed by Anders Carlsson.
* WebCore.exp.in:
* page/FrameView.cpp:
(WebCore::FrameView::setUseCustomFixedPositionLayoutRect): Deleted.
* page/FrameView.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (170296 => 170297)
--- trunk/Source/WebCore/ChangeLog 2014-06-23 17:02:27 UTC (rev 170296)
+++ trunk/Source/WebCore/ChangeLog 2014-06-23 17:07:54 UTC (rev 170297)
@@ -1,3 +1,15 @@
+2014-06-23 Andreas Kling <[email protected]>
+
+ Remove unused FrameView::setUseCustomFixedPositionLayoutRect().
+ <https://webkit.org/b/134194>
+
+ Reviewed by Anders Carlsson.
+
+ * WebCore.exp.in:
+ * page/FrameView.cpp:
+ (WebCore::FrameView::setUseCustomFixedPositionLayoutRect): Deleted.
+ * page/FrameView.h:
+
2014-06-23 Antti Koivisto <[email protected]>
REGRESSION (r160908): Unable to unset bold while entering text
Modified: trunk/Source/WebCore/WebCore.exp.in (170296 => 170297)
--- trunk/Source/WebCore/WebCore.exp.in 2014-06-23 17:02:27 UTC (rev 170296)
+++ trunk/Source/WebCore/WebCore.exp.in 2014-06-23 17:07:54 UTC (rev 170297)
@@ -2723,7 +2723,6 @@
__ZN7WebCore9FrameView30graphicsLayerForPlatformWidgetEP7WAKView
__ZN7WebCore9FrameView32setCustomFixedPositionLayoutRectERKNS_7IntRectE
__ZN7WebCore9FrameView33rectForViewportConstrainedObjectsERKNS_10LayoutRectERKNS_10LayoutSizeEfbNS_30ScrollBehaviorForFixedElementsE
-__ZN7WebCore9FrameView35setUseCustomFixedPositionLayoutRectEb
__ZN7WebCore9FrameView36scheduleLayerFlushAllowingThrottlingEv
__ZN7WebCore9PageGroup17removeVisitedLinkERKNS_3URLE
__ZNK7WebCore10FloatPointcv7CGPointEv
Modified: trunk/Source/WebCore/page/FrameView.cpp (170296 => 170297)
--- trunk/Source/WebCore/page/FrameView.cpp 2014-06-23 17:02:27 UTC (rev 170296)
+++ trunk/Source/WebCore/page/FrameView.cpp 2014-06-23 17:07:54 UTC (rev 170297)
@@ -4159,14 +4159,6 @@
}
#if PLATFORM(IOS)
-void FrameView::setUseCustomFixedPositionLayoutRect(bool useCustomFixedPositionLayoutRect)
-{
- if (m_useCustomFixedPositionLayoutRect == useCustomFixedPositionLayoutRect)
- return;
- m_useCustomFixedPositionLayoutRect = useCustomFixedPositionLayoutRect;
- visibleContentsResized();
-}
-
void FrameView::setCustomFixedPositionLayoutRect(const IntRect& rect)
{
if (m_useCustomFixedPositionLayoutRect && m_customFixedPositionLayoutRect == rect)
Modified: trunk/Source/WebCore/page/FrameView.h (170296 => 170297)
--- trunk/Source/WebCore/page/FrameView.h 2014-06-23 17:02:27 UTC (rev 170296)
+++ trunk/Source/WebCore/page/FrameView.h 2014-06-23 17:07:54 UTC (rev 170297)
@@ -125,7 +125,6 @@
#if PLATFORM(IOS)
bool useCustomFixedPositionLayoutRect() const { return m_useCustomFixedPositionLayoutRect; }
- void setUseCustomFixedPositionLayoutRect(bool);
IntRect customFixedPositionLayoutRect() const { return m_customFixedPositionLayoutRect; }
void setCustomFixedPositionLayoutRect(const IntRect&);
bool updateFixedPositionLayoutRect();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes