Title: [183616] trunk/Source/WebCore
Revision
183616
Author
[email protected]
Date
2015-04-29 21:43:03 -0700 (Wed, 29 Apr 2015)

Log Message

Unreviewed build fix. WebCore has a weak symbol.

WebCore has a weak external symbol in it. A common cause of weak external
symbols is when an inline function is listed in the linker export file.
ERROR: symbol __ZNK7WebCore4Page25expectsWheelEventTriggersEv

* page/Page.cpp:
(WebCore::Page::expectsWheelEventTriggers):
* page/Page.h:
(WebCore::Page::expectsWheelEventTriggers): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (183615 => 183616)


--- trunk/Source/WebCore/ChangeLog	2015-04-30 04:40:55 UTC (rev 183615)
+++ trunk/Source/WebCore/ChangeLog	2015-04-30 04:43:03 UTC (rev 183616)
@@ -1,3 +1,16 @@
+2015-04-29  Joseph Pecoraro  <[email protected]>
+
+        Unreviewed build fix. WebCore has a weak symbol.
+
+        WebCore has a weak external symbol in it. A common cause of weak external
+        symbols is when an inline function is listed in the linker export file.
+        ERROR: symbol __ZNK7WebCore4Page25expectsWheelEventTriggersEv
+
+        * page/Page.cpp:
+        (WebCore::Page::expectsWheelEventTriggers):
+        * page/Page.h:
+        (WebCore::Page::expectsWheelEventTriggers): Deleted.
+
 2015-04-29  Simon Fraser  <[email protected]>
 
         Crash at WebCore::Document::absoluteRegionForEventTargets 

Modified: trunk/Source/WebCore/page/Page.cpp (183615 => 183616)


--- trunk/Source/WebCore/page/Page.cpp	2015-04-30 04:40:55 UTC (rev 183615)
+++ trunk/Source/WebCore/page/Page.cpp	2015-04-30 04:43:03 UTC (rev 183616)
@@ -1742,6 +1742,10 @@
 {
     m_testTrigger = nullptr;
 }
-    
 
+bool Page::expectsWheelEventTriggers() const
+{
+    return !!m_testTrigger;
+}
+
 } // namespace WebCore

Modified: trunk/Source/WebCore/page/Page.h (183615 => 183616)


--- trunk/Source/WebCore/page/Page.h	2015-04-30 04:40:55 UTC (rev 183615)
+++ trunk/Source/WebCore/page/Page.h	2015-04-30 04:43:03 UTC (rev 183616)
@@ -443,7 +443,7 @@
     WEBCORE_EXPORT RefPtr<WheelEventTestTrigger> testTrigger() const;
     WEBCORE_EXPORT WheelEventTestTrigger& ensureTestTrigger();
     WEBCORE_EXPORT void clearTrigger();
-    WEBCORE_EXPORT bool expectsWheelEventTriggers() const { return !!m_testTrigger; }
+    WEBCORE_EXPORT bool expectsWheelEventTriggers() const;
 
 private:
     WEBCORE_EXPORT void initGroup();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to