Title: [205009] trunk/Source/WebKit2
Revision
205009
Author
gyuyoung....@webkit.org
Date
2016-08-26 01:46:02 -0700 (Fri, 26 Aug 2016)

Log Message

Unreviewed EFL build fix since r204996.

Patch by Gyuyoung Kim <gyuyoung....@navercorp.com> on 2016-08-26

* UIProcess/efl/WebPageProxyEfl.cpp:
(WebKit::WebPageProxy::editorStateChanged):
(WebKit::WebPageProxy::setThemePath):
(WebKit::WebPageProxy::confirmComposition):
(WebKit::WebPageProxy::setComposition):
(WebKit::WebPageProxy::cancelComposition):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (205008 => 205009)


--- trunk/Source/WebKit2/ChangeLog	2016-08-26 08:04:02 UTC (rev 205008)
+++ trunk/Source/WebKit2/ChangeLog	2016-08-26 08:46:02 UTC (rev 205009)
@@ -1,3 +1,14 @@
+2016-08-26  Gyuyoung Kim  <gyuyoung....@navercorp.com>
+
+        Unreviewed EFL build fix since r204996.
+
+        * UIProcess/efl/WebPageProxyEfl.cpp:
+        (WebKit::WebPageProxy::editorStateChanged):
+        (WebKit::WebPageProxy::setThemePath):
+        (WebKit::WebPageProxy::confirmComposition):
+        (WebKit::WebPageProxy::setComposition):
+        (WebKit::WebPageProxy::cancelComposition):
+
 2016-08-25  Carlos Garcia Campos  <cgar...@igalia.com>
 
         Unreviewed. Fix GTK+ build after r204986 and r204996.

Modified: trunk/Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp (205008 => 205009)


--- trunk/Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp	2016-08-26 08:04:02 UTC (rev 205008)
+++ trunk/Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp	2016-08-26 08:46:02 UTC (rev 205009)
@@ -69,7 +69,7 @@
 void WebPageProxy::editorStateChanged(const EditorState& editorState)
 {
     m_editorState = editorState;
-    
+
     if (editorState.shouldIgnoreCompositionSelectionChange)
         return;
     m_pageClient.updateTextInputState();
@@ -80,7 +80,7 @@
     if (!isValid())
         return;
 
-    process().send(Messages::WebPage::SetThemePath(themePath), m_pageID, 0);
+    process().send(Messages::WebPage::SetThemePath(themePath), m_pageID);
 }
 
 void WebPageProxy::createPluginContainer(uint64_t&)
@@ -108,7 +108,7 @@
     if (!isValid())
         return;
 
-    process().send(Messages::WebPage::ConfirmComposition(compositionString), m_pageID, 0);
+    process().send(Messages::WebPage::ConfirmComposition(compositionString), m_pageID);
 }
 
 void WebPageProxy::setComposition(const String& compositionString, Vector<WebCore::CompositionUnderline>& underlines, int cursorPosition)
@@ -116,7 +116,7 @@
     if (!isValid())
         return;
 
-    process().send(Messages::WebPage::SetComposition(compositionString, underlines, cursorPosition), m_pageID, 0);
+    process().send(Messages::WebPage::SetComposition(compositionString, underlines, cursorPosition), m_pageID);
 }
 
 void WebPageProxy::cancelComposition()
@@ -124,7 +124,7 @@
     if (!isValid())
         return;
 
-    process().send(Messages::WebPage::CancelComposition(), m_pageID, 0);
+    process().send(Messages::WebPage::CancelComposition(), m_pageID);
 }
 
 #if HAVE(ACCESSIBILITY) && defined(HAVE_ECORE_X)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to