Title: [169879] trunk/Source/WebKit2
Revision
169879
Author
[email protected]
Date
2014-06-11 22:45:58 -0700 (Wed, 11 Jun 2014)

Log Message

Fix build break on EFL port since r169869
https://bugs.webkit.org/show_bug.cgi?id=133785

Unreviewed, fix a build break on EFL port.

Patch by Gyuyoung Kim <[email protected]> on 2014-06-11

* WebProcess/InjectedBundle/API/c/WKBundlePage.cpp: Use defined(TARGET_OS_IPHONE).
* WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h: ditto.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (169878 => 169879)


--- trunk/Source/WebKit2/ChangeLog	2014-06-12 05:22:18 UTC (rev 169878)
+++ trunk/Source/WebKit2/ChangeLog	2014-06-12 05:45:58 UTC (rev 169879)
@@ -1,3 +1,13 @@
+2014-06-11  Gyuyoung Kim  <[email protected]>
+
+        Fix build break on EFL port since r169869
+        https://bugs.webkit.org/show_bug.cgi?id=133785
+
+        Unreviewed, fix a build break on EFL port.
+
+        * WebProcess/InjectedBundle/API/c/WKBundlePage.cpp: Use defined(TARGET_OS_IPHONE).
+        * WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h: ditto.
+
 2014-06-11  Simon Fraser  <[email protected]>
 
         [iOS WK2] Give WebKitTestRunner a viewport configuration with initial scale=1 for testing

Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp (169878 => 169879)


--- trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp	2014-06-12 05:22:18 UTC (rev 169878)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp	2014-06-12 05:45:58 UTC (rev 169879)
@@ -566,7 +566,7 @@
     return toImpl(pageRef)->usesEphemeralSession();
 }
 
-#if TARGET_OS_IPHONE
+#if defined(TARGET_OS_IPHONE)
 void WKBundlePageSetUseTestingViewportConfiguration(WKBundlePageRef pageRef, bool useTestingViewportConfiguration)
 {
     toImpl(pageRef)->setUseTestingViewportConfiguration(useTestingViewportConfiguration);

Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h (169878 => 169879)


--- trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h	2014-06-12 05:22:18 UTC (rev 169878)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h	2014-06-12 05:45:58 UTC (rev 169879)
@@ -93,7 +93,7 @@
 WK_EXPORT WKRenderingSuppressionToken WKBundlePageExtendIncrementalRenderingSuppression(WKBundlePageRef);
 WK_EXPORT void WKBundlePageStopExtendingIncrementalRenderingSuppression(WKBundlePageRef, WKRenderingSuppressionToken);
 
-#if TARGET_OS_IPHONE
+#if defined(TARGET_OS_IPHONE)
 WK_EXPORT void WKBundlePageSetUseTestingViewportConfiguration(WKBundlePageRef, bool);
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to