Title: [195712] trunk/Source/WebKit2
Revision
195712
Author
[email protected]
Date
2016-01-27 17:14:15 -0800 (Wed, 27 Jan 2016)

Log Message

Include the right WebKitAdditions files
https://bugs.webkit.org/show_bug.cgi?id=153572

Reviewed by Tim Horton.

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::WebPageProxy):
(WebKit::WebPageProxy::reattachToWebProcess):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (195711 => 195712)


--- trunk/Source/WebKit2/ChangeLog	2016-01-28 01:08:03 UTC (rev 195711)
+++ trunk/Source/WebKit2/ChangeLog	2016-01-28 01:14:15 UTC (rev 195712)
@@ -1,3 +1,14 @@
+2016-01-27  Anders Carlsson  <[email protected]>
+
+        Include the right WebKitAdditions files
+        https://bugs.webkit.org/show_bug.cgi?id=153572
+
+        Reviewed by Tim Horton.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::WebPageProxy):
+        (WebKit::WebPageProxy::reattachToWebProcess):
+
 2016-01-27  Daniel Bates  <[email protected]>
 
         Move ContentSecurityPolicy.{cpp, h} to its own directory

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp (195711 => 195712)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2016-01-28 01:08:03 UTC (rev 195711)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2016-01-28 01:14:15 UTC (rev 195712)
@@ -477,8 +477,8 @@
     m_vibration = WebVibrationProxy::create(this);
 #endif
 
-#if defined(__has_include) && __has_include(<WebKitAdditions/WebPageProxyInitialization.h>)
-#include <WebKitAdditions/WebPageProxyInitialization.h>
+#if defined(__has_include) && __has_include(<WebKitAdditions/WebPageProxyInitialization.cpp>)
+#include <WebKitAdditions/WebPageProxyInitialization.cpp>
 #endif
 
     m_process->addMessageReceiver(Messages::WebPageProxy::messageReceiverName(), m_pageID, *this);
@@ -709,8 +709,8 @@
     m_videoFullscreenManager = WebVideoFullscreenManagerProxy::create(*this);
 #endif
 
-#if defined(__has_include) && __has_include(<WebKitAdditions/WebPageProxyInitialization.h>)
-#include <WebKitAdditions/WebPageProxyInitialization.h>
+#if defined(__has_include) && __has_include(<WebKitAdditions/WebPageProxyInitialization.cpp>)
+#include <WebKitAdditions/WebPageProxyInitialization.cpp>
 #endif
 
     initializeWebPage();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to