Title: [200614] trunk/Source/WebCore
Revision
200614
Author
[email protected]
Date
2016-05-09 22:04:24 -0700 (Mon, 09 May 2016)

Log Message

Fix GTK build after r200607

* Modules/notifications/Notification.h:
dir and replaceId are used in WebNotificationManager with NOTIFICATIONS and with LEGACY_NOTIFICATIONS

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (200613 => 200614)


--- trunk/Source/WebCore/ChangeLog	2016-05-10 04:58:30 UTC (rev 200613)
+++ trunk/Source/WebCore/ChangeLog	2016-05-10 05:04:24 UTC (rev 200614)
@@ -1,3 +1,10 @@
+2016-05-09  Alex Christensen  <[email protected]>
+
+        Fix GTK build after r200607
+
+        * Modules/notifications/Notification.h:
+        dir and replaceId are used in WebNotificationManager with NOTIFICATIONS and with LEGACY_NOTIFICATIONS
+
 2016-05-09  Simon Fraser  <[email protected]>
 
         Fix the Windows build after r200602, and do some minor tidyup.

Modified: trunk/Source/WebCore/Modules/notifications/Notification.h (200613 => 200614)


--- trunk/Source/WebCore/Modules/notifications/Notification.h	2016-05-10 04:58:30 UTC (rev 200613)
+++ trunk/Source/WebCore/Modules/notifications/Notification.h	2016-05-10 05:04:24 UTC (rev 200614)
@@ -80,13 +80,11 @@
     const String& body() const { return m_body; }
     const String& lang() const { return m_lang; }
 
-#if ENABLE(LEGACY_NOTIFICATIONS)
     const String& dir() const { return m_direction; }
     void setDir(const String& dir) { m_direction = dir; }
 
     const String& replaceId() const { return m_tag; }
     void setReplaceId(const String& replaceId) { m_tag = replaceId; }
-#endif
 
     const String& tag() const { return m_tag; }
     void setTag(const String& tag) { m_tag = tag; }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to