Title: [160392] trunk/Source/WebKit2
Revision
160392
Author
commit-qu...@webkit.org
Date
2013-12-10 15:27:07 -0800 (Tue, 10 Dec 2013)

Log Message

[EFL] One more WK2 build fix
https://bugs.webkit.org/show_bug.cgi?id=125544

API::TypedObject has been renamed to API::ObjectImpl

Patch by Nick Diego Yamane <nick.yam...@openbossa.org> on 2013-12-10
Reviewed by Tim Horton.

* Shared/WebBatteryStatus.h:
* Shared/WebNetworkInfo.h:
* UIProcess/CoordinatedGraphics/WebView.h:
* UIProcess/WebBatteryManagerProxy.h:
* UIProcess/WebNetworkInfoManagerProxy.h:
* UIProcess/WebTextChecker.h:
* UIProcess/WebVibrationProxy.h:
* UIProcess/WebViewportAttributes.h:
* UIProcess/efl/WebPopupItemEfl.h:
* UIProcess/soup/WebSoupRequestManagerProxy.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (160391 => 160392)


--- trunk/Source/WebKit2/ChangeLog	2013-12-10 23:00:40 UTC (rev 160391)
+++ trunk/Source/WebKit2/ChangeLog	2013-12-10 23:27:07 UTC (rev 160392)
@@ -1,3 +1,23 @@
+2013-12-10  Nick Diego Yamane  <nick.yam...@openbossa.org>
+
+        [EFL] One more WK2 build fix
+        https://bugs.webkit.org/show_bug.cgi?id=125544
+
+        API::TypedObject has been renamed to API::ObjectImpl
+
+        Reviewed by Tim Horton.
+
+        * Shared/WebBatteryStatus.h:
+        * Shared/WebNetworkInfo.h:
+        * UIProcess/CoordinatedGraphics/WebView.h:
+        * UIProcess/WebBatteryManagerProxy.h:
+        * UIProcess/WebNetworkInfoManagerProxy.h:
+        * UIProcess/WebTextChecker.h:
+        * UIProcess/WebVibrationProxy.h:
+        * UIProcess/WebViewportAttributes.h:
+        * UIProcess/efl/WebPopupItemEfl.h:
+        * UIProcess/soup/WebSoupRequestManagerProxy.h:
+
 2013-12-10  Anders Carlsson  <ander...@apple.com>
 
         Rename WebNumber.h to APINumber.h

Modified: trunk/Source/WebKit2/Shared/WebBatteryStatus.h (160391 => 160392)


--- trunk/Source/WebKit2/Shared/WebBatteryStatus.h	2013-12-10 23:00:40 UTC (rev 160391)
+++ trunk/Source/WebKit2/Shared/WebBatteryStatus.h	2013-12-10 23:27:07 UTC (rev 160392)
@@ -35,7 +35,7 @@
 
 namespace WebKit {
 
-class WebBatteryStatus : public API::TypedObject<API::Object::Type::BatteryStatus> {
+class WebBatteryStatus : public API::ObjectImpl<API::Object::Type::BatteryStatus> {
 public:
     struct Data {
         void encode(CoreIPC::ArgumentEncoder&) const;

Modified: trunk/Source/WebKit2/Shared/WebNetworkInfo.h (160391 => 160392)


--- trunk/Source/WebKit2/Shared/WebNetworkInfo.h	2013-12-10 23:00:40 UTC (rev 160391)
+++ trunk/Source/WebKit2/Shared/WebNetworkInfo.h	2013-12-10 23:27:07 UTC (rev 160392)
@@ -35,7 +35,7 @@
 
 namespace WebKit {
 
-class WebNetworkInfo : public API::TypedObject<API::Object::Type::NetworkInfo> {
+class WebNetworkInfo : public API::ObjectImpl<API::Object::Type::NetworkInfo> {
 public:
     struct Data {
         void encode(CoreIPC::ArgumentEncoder&) const;

Modified: trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.h (160391 => 160392)


--- trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.h	2013-12-10 23:00:40 UTC (rev 160391)
+++ trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.h	2013-12-10 23:27:07 UTC (rev 160392)
@@ -34,7 +34,6 @@
 #include "PageClient.h"
 #include "WebContext.h"
 #include "WebFullScreenManagerProxy.h"
-#include "WebGeometry.h"
 #include "WebPageGroup.h"
 #include "WebPageProxy.h"
 #include "WebPreferences.h"
@@ -47,7 +46,7 @@
 
 namespace WebKit {
 
-class WebView : public API::TypedObject<API::Object::Type::View>, public PageClient
+class WebView : public API::ObjectImpl<API::Object::Type::View>, public PageClient
 #if ENABLE(FULLSCREEN_API)
     , public WebFullScreenManagerProxyClient
 #endif

Modified: trunk/Source/WebKit2/UIProcess/WebBatteryManagerProxy.h (160391 => 160392)


--- trunk/Source/WebKit2/UIProcess/WebBatteryManagerProxy.h	2013-12-10 23:00:40 UTC (rev 160391)
+++ trunk/Source/WebKit2/UIProcess/WebBatteryManagerProxy.h	2013-12-10 23:27:07 UTC (rev 160392)
@@ -39,7 +39,7 @@
 class WebContext;
 class WebBatteryStatus;
 
-class WebBatteryManagerProxy : public API::TypedObject<API::Object::Type::BatteryManager>, public WebContextSupplement, private CoreIPC::MessageReceiver {
+class WebBatteryManagerProxy : public API::ObjectImpl<API::Object::Type::BatteryManager>, public WebContextSupplement, private CoreIPC::MessageReceiver {
 public:
     static const char* supplementName();
 

Modified: trunk/Source/WebKit2/UIProcess/WebNetworkInfoManagerProxy.h (160391 => 160392)


--- trunk/Source/WebKit2/UIProcess/WebNetworkInfoManagerProxy.h	2013-12-10 23:00:40 UTC (rev 160391)
+++ trunk/Source/WebKit2/UIProcess/WebNetworkInfoManagerProxy.h	2013-12-10 23:27:07 UTC (rev 160392)
@@ -39,7 +39,7 @@
 class WebContext;
 class WebNetworkInfo;
 
-class WebNetworkInfoManagerProxy : public API::TypedObject<API::Object::Type::NetworkInfoManager>, public WebContextSupplement, private CoreIPC::MessageReceiver {
+class WebNetworkInfoManagerProxy : public API::ObjectImpl<API::Object::Type::NetworkInfoManager>, public WebContextSupplement, private CoreIPC::MessageReceiver {
 public:
     static const char* supplementName();
 

Modified: trunk/Source/WebKit2/UIProcess/WebTextChecker.h (160391 => 160392)


--- trunk/Source/WebKit2/UIProcess/WebTextChecker.h	2013-12-10 23:00:40 UTC (rev 160391)
+++ trunk/Source/WebKit2/UIProcess/WebTextChecker.h	2013-12-10 23:27:07 UTC (rev 160392)
@@ -35,7 +35,7 @@
 
 class WebPageProxy;
 
-class WebTextChecker : public API::TypedObject<API::Object::Type::TextChecker> {
+class WebTextChecker : public API::ObjectImpl<API::Object::Type::TextChecker> {
 public:
     static WebTextChecker* shared();
 

Modified: trunk/Source/WebKit2/UIProcess/WebVibrationProxy.h (160391 => 160392)


--- trunk/Source/WebKit2/UIProcess/WebVibrationProxy.h	2013-12-10 23:00:40 UTC (rev 160391)
+++ trunk/Source/WebKit2/UIProcess/WebVibrationProxy.h	2013-12-10 23:27:07 UTC (rev 160392)
@@ -37,7 +37,7 @@
 
 class WebPageProxy;
 
-class WebVibrationProxy : public API::TypedObject<API::Object::Type::Vibration>, private CoreIPC::MessageReceiver {
+class WebVibrationProxy : public API::ObjectImpl<API::Object::Type::Vibration>, private CoreIPC::MessageReceiver {
 public:
     static PassRefPtr<WebVibrationProxy> create(WebPageProxy*);
     virtual ~WebVibrationProxy();

Modified: trunk/Source/WebKit2/UIProcess/WebViewportAttributes.h (160391 => 160392)


--- trunk/Source/WebKit2/UIProcess/WebViewportAttributes.h	2013-12-10 23:00:40 UTC (rev 160391)
+++ trunk/Source/WebKit2/UIProcess/WebViewportAttributes.h	2013-12-10 23:27:07 UTC (rev 160392)
@@ -32,7 +32,7 @@
 
 namespace WebKit {
 
-class WebViewportAttributes : public API::TypedObject<API::Object::Type::ViewportAttributes> {
+class WebViewportAttributes : public API::ObjectImpl<API::Object::Type::ViewportAttributes> {
 public:
     static PassRefPtr<WebViewportAttributes> create(const WebCore::ViewportAttributes& attributes)
     {

Modified: trunk/Source/WebKit2/UIProcess/efl/WebPopupItemEfl.h (160391 => 160392)


--- trunk/Source/WebKit2/UIProcess/efl/WebPopupItemEfl.h	2013-12-10 23:00:40 UTC (rev 160391)
+++ trunk/Source/WebKit2/UIProcess/efl/WebPopupItemEfl.h	2013-12-10 23:27:07 UTC (rev 160392)
@@ -32,7 +32,7 @@
 
 namespace WebKit {
 
-class WebPopupItemEfl : public API::TypedObject<API::Object::Type::PopupMenuItem> {
+class WebPopupItemEfl : public API::ObjectImpl<API::Object::Type::PopupMenuItem> {
 public:
     static PassRefPtr<WebPopupItemEfl> create(const WebPopupItem& data)
     {

Modified: trunk/Source/WebKit2/UIProcess/soup/WebSoupRequestManagerProxy.h (160391 => 160392)


--- trunk/Source/WebKit2/UIProcess/soup/WebSoupRequestManagerProxy.h	2013-12-10 23:00:40 UTC (rev 160391)
+++ trunk/Source/WebKit2/UIProcess/soup/WebSoupRequestManagerProxy.h	2013-12-10 23:27:07 UTC (rev 160392)
@@ -34,7 +34,7 @@
 class WebContext;
 class WebData;
 
-class WebSoupRequestManagerProxy : public API::TypedObject<API::Object::Type::SoupRequestManager>, public WebContextSupplement, private CoreIPC::MessageReceiver {
+class WebSoupRequestManagerProxy : public API::ObjectImpl<API::Object::Type::SoupRequestManager>, public WebContextSupplement, private CoreIPC::MessageReceiver {
 public:
     static const char* supplementName();
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to