Title: [194274] trunk/Source/WebKit2
Revision
194274
Author
[email protected]
Date
2015-12-18 10:19:46 -0800 (Fri, 18 Dec 2015)

Log Message

WebPage::didCompleteUserMediaPermissionCheck and WebPage::didReceiveUserMediaPermissionDecision are exported
https://bugs.webkit.org/show_bug.cgi?id=152429

Reviewed by Tim Horton.

* WebProcess/WebPage/WebPage.h: Removed WK_EXPORT specifiers from these two declarations.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (194273 => 194274)


--- trunk/Source/WebKit2/ChangeLog	2015-12-18 18:16:13 UTC (rev 194273)
+++ trunk/Source/WebKit2/ChangeLog	2015-12-18 18:19:46 UTC (rev 194274)
@@ -1,3 +1,12 @@
+2015-12-18  Dan Bernstein  <[email protected]>
+
+        WebPage::didCompleteUserMediaPermissionCheck and WebPage::didReceiveUserMediaPermissionDecision are exported
+        https://bugs.webkit.org/show_bug.cgi?id=152429
+
+        Reviewed by Tim Horton.
+
+        * WebProcess/WebPage/WebPage.h: Removed WK_EXPORT specifiers from these two declarations.
+
 2015-12-18  Alex Christensen  <[email protected]>
 
         Move networking code from Shared to NetworkProcess

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebPage.h (194273 => 194274)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebPage.h	2015-12-18 18:16:13 UTC (rev 194273)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebPage.h	2015-12-18 18:19:46 UTC (rev 194274)
@@ -1105,8 +1105,8 @@
     void didReceiveNotificationPermissionDecision(uint64_t notificationID, bool allowed);
 
 #if ENABLE(MEDIA_STREAM)
-    WK_EXPORT void didReceiveUserMediaPermissionDecision(uint64_t userMediaID, bool allowed, const String& audioDeviceUID, const String& videoDeviceUID);
-    WK_EXPORT void didCompleteUserMediaPermissionCheck(uint64_t userMediaID, bool allowed);
+    void didReceiveUserMediaPermissionDecision(uint64_t userMediaID, bool allowed, const String& audioDeviceUID, const String& videoDeviceUID);
+    void didCompleteUserMediaPermissionCheck(uint64_t userMediaID, bool allowed);
 #endif
 
     void advanceToNextMisspelling(bool startBeforeSelection);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to