Title: [173315] trunk/Source/WebKit/mac
Revision
173315
Author
[email protected]
Date
2014-09-05 11:16:16 -0700 (Fri, 05 Sep 2014)

Log Message

[iOS] Fix the iOS build after <http://trac.webkit.org/changeset/173309>
(https://bugs.webkit.org/show_bug.cgi?id=136564)

Include more code inside the !PLATFORM(IOS)-guarded section in -setDataSource:.

* WebView/WebHTMLView.mm:
(-[WebHTMLView setDataSource:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (173314 => 173315)


--- trunk/Source/WebKit/mac/ChangeLog	2014-09-05 18:15:59 UTC (rev 173314)
+++ trunk/Source/WebKit/mac/ChangeLog	2014-09-05 18:16:16 UTC (rev 173315)
@@ -1,3 +1,13 @@
+2014-09-05  Daniel Bates  <[email protected]>
+
+        [iOS] Fix the iOS build after <http://trac.webkit.org/changeset/173309>
+        (https://bugs.webkit.org/show_bug.cgi?id=136564)
+
+        Include more code inside the !PLATFORM(IOS)-guarded section in -setDataSource:.
+
+        * WebView/WebHTMLView.mm:
+        (-[WebHTMLView setDataSource:]):
+
 2014-09-04  Maciej Stachowiak  <[email protected]>
 
         Use tracking areas instead of (SPI) mouse moved notifications, and follow flags changes with an event monitor

Modified: trunk/Source/WebKit/mac/WebView/WebHTMLView.mm (173314 => 173315)


--- trunk/Source/WebKit/mac/WebView/WebHTMLView.mm	2014-09-05 18:15:59 UTC (rev 173314)
+++ trunk/Source/WebKit/mac/WebView/WebHTMLView.mm	2014-09-05 18:16:16 UTC (rev 173315)
@@ -4223,9 +4223,9 @@
             initWithRect:[self frame] options:options owner:self userInfo:nil];
         [self addTrackingArea:trackingArea];
         [trackingArea release];
-#endif
         _private->installedTrackingArea = YES;
     }
+#endif
 }
 
 - (void)dataSourceUpdated:(WebDataSource *)dataSource
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to