Title: [179929] trunk/Source/WebCore
Revision
179929
Author
[email protected]
Date
2015-02-11 09:09:33 -0800 (Wed, 11 Feb 2015)

Log Message

Add a few more WEBCORE_EXPORT macros for debug and iOS builds.

* page/EventHandler.h:
* page/ios/WebEventRegion.h:
* platform/sql/SQLiteDatabaseTracker.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (179928 => 179929)


--- trunk/Source/WebCore/ChangeLog	2015-02-11 16:41:13 UTC (rev 179928)
+++ trunk/Source/WebCore/ChangeLog	2015-02-11 17:09:33 UTC (rev 179929)
@@ -1,3 +1,11 @@
+2015-02-11  Alex Christensen  <[email protected]>
+
+        Add a few more WEBCORE_EXPORT macros for debug and iOS builds.
+
+        * page/EventHandler.h:
+        * page/ios/WebEventRegion.h:
+        * platform/sql/SQLiteDatabaseTracker.h:
+
 2015-02-11  Darin Adler  <[email protected]>
 
         REGRESSION(r179476): It broke the !ENABLE(PICTURE_SIZES) build

Modified: trunk/Source/WebCore/page/EventHandler.h (179928 => 179929)


--- trunk/Source/WebCore/page/EventHandler.h	2015-02-11 16:41:13 UTC (rev 179928)
+++ trunk/Source/WebCore/page/EventHandler.h	2015-02-11 17:09:33 UTC (rev 179929)
@@ -268,7 +268,7 @@
 #endif
 
 #if ENABLE(IOS_TOUCH_EVENTS)
-    void touchEvent(WebEvent *);
+    WEBCORE_EXPORT void touchEvent(WebEvent *);
 #endif
 
 #if !PLATFORM(IOS)

Modified: trunk/Source/WebCore/page/ios/WebEventRegion.h (179928 => 179929)


--- trunk/Source/WebCore/page/ios/WebEventRegion.h	2015-02-11 16:41:13 UTC (rev 179928)
+++ trunk/Source/WebCore/page/ios/WebEventRegion.h	2015-02-11 17:09:33 UTC (rev 179929)
@@ -29,7 +29,7 @@
 #import <CoreGraphics/CGGeometry.h>
 #import <Foundation/NSObject.h>
 
-@interface WebEventRegion : NSObject <NSCopying>
+WEBCORE_EXPORT @interface WebEventRegion : NSObject <NSCopying>
 {
     CGPoint p1, p2, p3, p4;
 }

Modified: trunk/Source/WebCore/platform/sql/SQLiteDatabaseTracker.h (179928 => 179929)


--- trunk/Source/WebCore/platform/sql/SQLiteDatabaseTracker.h	2015-02-11 16:41:13 UTC (rev 179928)
+++ trunk/Source/WebCore/platform/sql/SQLiteDatabaseTracker.h	2015-02-11 17:09:33 UTC (rev 179929)
@@ -38,7 +38,7 @@
 WEBCORE_EXPORT void setClient(SQLiteDatabaseTrackerClient*);
 
 #if !ASSERT_DISABLED
-bool hasTransactionInProgress();
+WEBCORE_EXPORT bool hasTransactionInProgress();
 #endif
 
 };
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to