Revert "Revert "Remove TIZEN_RECORDING_SURFACE_SET and TIZEN_RECORDING_SURFACE_PAINT_...
[framework/web/webkit-efl.git] / Source / WebKit2 / UIProcess / efl / WebPageProxyEfl.cpp
1 /*
2  * Copyright (C) 2011 Samsung Electronics
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27 #include "WebPageProxy.h"
28
29 #include "EwkViewImpl.h"
30 #include "NativeWebKeyboardEvent.h"
31 #include "NotImplemented.h"
32 #include "PageClientImpl.h"
33 #include "WebPageMessages.h"
34 #include "WebProcessProxy.h"
35
36 #include <sys/utsname.h>
37
38 #if OS(TIZEN)
39 #include "DrawingAreaMessages.h"
40
41 #if ENABLE(TIZEN_CSS_OVERFLOW_SCROLL_ACCELERATION_ON_UI_SIDE)
42 #include "LayerTreeCoordinatorProxy.h"
43 #endif
44 #include "NativeWebKeyboardEvent.h"
45 #include "WebImage.h"
46 #include "WebPageMessages.h"
47 #include "WebProcessProxy.h"
48 #include <WebCore/IntSize.h>
49 #if ENABLE(TIZEN_CONTEXT_MENU_WEBKIT_2)
50 #include "WebContextMenuProxy.h"
51 #include "ewk_view_private.h"
52 #endif
53
54 #define MESSAGE_CHECK(assertion) MESSAGE_CHECK_BASE(assertion, m_process->connection())
55
56 #if ENABLE(TIZEN_LINK_MAGNIFIER)
57 #include "LinkMagnifierProxy.h"
58 #endif
59
60 #if ENABLE(TIZEN_SCREEN_READER)
61 #include "ScreenReaderProxy.h"
62 #include "ewk_view_private.h"
63 #endif
64
65 #if ENABLE(TIZEN_CSP)
66 #include <WebCore/ContentSecurityPolicy.h>
67 #endif
68
69 using namespace WebCore;
70 #endif
71
72 namespace WebKit {
73
74 Evas_Object* WebPageProxy::viewWidget()
75 {
76     return static_cast<PageClientImpl*>(m_pageClient)->viewImpl()->view();
77 }
78
79 String WebPageProxy::standardUserAgent(const String& applicationNameForUserAgent)
80 {
81 #if OS(TIZEN)
82     return String::fromUTF8("Mozilla/5.0 (Linux; Tizen 2.1; sdk) AppleWebKit/537.3 (KHTML, like Gecko) Version/2.1 Mobile Safari/537.3");
83 #endif
84
85     WTF::String platform;
86     WTF::String version;
87     WTF::String osVersion;
88
89 #if PLATFORM(X11)
90     platform = "X11";
91 #else
92     platform = "Unknown";
93 #endif
94     version = makeString(String::number(WEBKIT_USER_AGENT_MAJOR_VERSION), '.',
95                          String::number(WEBKIT_USER_AGENT_MINOR_VERSION), '+');
96     struct utsname name;
97     if (uname(&name) != -1)
98         osVersion = WTF::String(name.sysname) + " " + WTF::String(name.machine);
99     else
100         osVersion = "Unknown";
101
102     if (applicationNameForUserAgent.isEmpty())
103         return makeString("Mozilla/5.0 (", platform, "; ", osVersion, ") AppleWebKit/", version,
104                " (KHTML, like Gecko) Version/5.0 Safari/", version);
105
106     return makeString("Mozilla/5.0 (", platform, "; ", osVersion, ") AppleWebKit/", version,
107            " (KHTML, like Gecko) Version/5.0 Safari/", version, applicationNameForUserAgent);
108 }
109
110 void WebPageProxy::getEditorCommandsForKeyEvent(Vector<WTF::String>& commandsList)
111 {
112     notImplemented();
113 }
114
115 void WebPageProxy::saveRecentSearches(const String&, const Vector<String>&)
116 {
117     notImplemented();
118 }
119
120 void WebPageProxy::loadRecentSearches(const String&, Vector<String>&)
121 {
122     notImplemented();
123 }
124
125 void WebPageProxy::setThemePath(const String& themePath)
126 {
127     process()->send(Messages::WebPage::SetThemePath(themePath), m_pageID, 0);
128 }
129
130 #if ENABLE(TIZEN_CUSTOM_HEADERS)
131 void WebPageProxy::addCustomHeader(const String& name, const String& value)
132 {
133     if (name.isEmpty())
134         return;
135
136     if (value.isEmpty())
137         return;
138
139     if (!isValid())
140         return;
141
142     process()->send(Messages::WebPage::AddCustomHeader(name, value), m_pageID);
143 }
144
145 void WebPageProxy::removeCustomHeader(const String& name)
146 {
147     if (name.isEmpty())
148         return;
149
150     if (!isValid())
151         return;
152
153     process()->send(Messages::WebPage::RemoveCustomHeader(name), m_pageID);
154 }
155
156 void WebPageProxy::clearCustomHeaders()
157 {
158     if (!isValid())
159         return;
160
161     process()->send(Messages::WebPage::ClearCustomHeaders(), m_pageID);
162 }
163 #endif
164
165 #if OS(TIZEN)
166 bool WebPageProxy::scrollMainFrameBy(const IntSize& scrollOffset)
167 {
168 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
169     return static_cast<PageClientImpl*>(m_pageClient)->scrollBy(scrollOffset);
170 #else
171     if (!isValid())
172         return false;
173
174     process()->send(Messages::WebPage::ScrollMainFrameBy(scrollOffset), m_pageID);
175     return true;
176 #endif
177 }
178
179 void WebPageProxy::scrollMainFrameTo(const IntPoint& scrollPosition)
180 {
181 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
182     static_cast<PageClientImpl*>(m_pageClient)->scrollTo(scrollPosition);
183 #else
184     if (!isValid())
185         return;
186
187     process()->send(Messages::WebPage::ScrollMainFrameTo(scrollPosition), m_pageID);
188 #endif
189 }
190
191 void WebPageProxy::didChangeScrollPositionForMainFrame(const IntPoint& scrollPosition)
192 {
193 #if !ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
194     m_scrollPosition = scrollPosition;
195 #endif
196 }
197
198 void WebPageProxy::didChangeContentsSize(const IntSize& size)
199 {
200     if (m_contentsSize == size)
201         return;
202
203     m_contentsSize = size;
204     m_pageClient->didChangeContentsSize(size);
205 }
206
207 PassRefPtr<WebImage> WebPageProxy::createSnapshot(const IntRect& rect, float scaleFactor)
208 {
209     if (!isValid())
210         return 0;
211
212     ShareableBitmap::Handle snapshotHandle;
213     // Do not wait for more than a second (arbitrary) for the WebProcess to get the snapshot so
214     // that the UI Process is not permanently stuck waiting on a potentially crashing Web Process.
215     static const double createSnapshotSyncMessageTimeout = 1.0;
216 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
217     float baseScaleFactor = static_cast<PageClientImpl*>(m_pageClient)->scaleFactor();
218     scaleFactor = scaleFactor * baseScaleFactor;
219
220     IntRect visibleContentRect = static_cast<PageClientImpl*>(m_pageClient)->visibleContentRect();
221     IntRect scaledRect = rect;
222     scaledRect.move(visibleContentRect.x(), visibleContentRect.y());
223     scaledRect.scale(1/baseScaleFactor);
224     process()->sendSync(Messages::WebPage::CreateSnapshot(scaledRect, scaleFactor), Messages::WebPage::CreateSnapshot::Reply(snapshotHandle), m_pageID, createSnapshotSyncMessageTimeout);
225 #else
226     process()->sendSync(Messages::WebPage::CreateSnapshot(rect, scaleFactor), Messages::WebPage::CreateSnapshot::Reply(snapshotHandle), m_pageID, createSnapshotSyncMessageTimeout);
227 #endif
228     if (snapshotHandle.isNull())
229         return 0;
230     return WebImage::create(ShareableBitmap::create(snapshotHandle));
231 }
232
233 #if ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
234 void WebPageProxy::textChangeInTextField(const String& name, const String& value)
235 {
236     static_cast<PageClientImpl*>(m_pageClient)->textChangeInTextField(name, value);
237 }
238 #endif
239
240 #if ENABLE(TIZEN_ISF_PORT)
241 void WebPageProxy::setInputMethodState(bool active)
242 {
243     InputMethodContextEfl* inputMethodContext = static_cast<PageClientImpl*>(m_pageClient)->viewImpl()->inputMethodContext();
244     if (!inputMethodContext)
245         return;
246
247     inputMethodContext->setUseInputMethod(active);
248 }
249
250 int WebPageProxy::getCursorOffset()
251 {
252     if (!isValid())
253         return 0;
254
255     int offset = 0;
256     process()->sendSync(Messages::WebPage::GetCursorOffset(), Messages::WebPage::GetCursorOffset::Reply(offset), m_pageID);
257     return offset;
258 }
259
260 void WebPageProxy::getSurroundingTextAndCursorOffset(String& text, int& offset)
261 {
262     if (!isValid())
263         return;
264
265     process()->sendSync(Messages::WebPage::GetSurroundingTextAndCursorOffset(), Messages::WebPage::GetSurroundingTextAndCursorOffset::Reply(text, offset), m_pageID);
266 }
267
268 IntRect WebPageProxy::getSelectionRect(bool isOnlyEditable)
269 {
270     IntRect rect;
271     process()->sendSync(Messages::WebPage::GetSelectionRect(isOnlyEditable), Messages::WebPage::GetSelectionRect::Reply(rect), m_pageID);
272     return rect;
273 }
274
275 void WebPageProxy::deleteSurroundingText(int offset, int count)
276 {
277     if (!isValid())
278         return;
279
280     process()->send(Messages::WebPage::DeleteSurroundingText(offset, count), m_pageID);
281 }
282
283 void WebPageProxy::didCancelComposition()
284 {
285     m_didCancelCompositionFromWebProcess = true;
286     InputMethodContextEfl* inputMethodContext = static_cast<PageClientImpl*>(m_pageClient)->viewImpl()->inputMethodContext();
287     if (inputMethodContext)
288         inputMethodContext->resetIMFContext();
289     m_didCancelCompositionFromWebProcess = false;
290 }
291 #endif
292
293 void WebPageProxy::requestUpdateFormNavigation()
294 {
295     if (!isValid())
296         return;
297
298     process()->send(Messages::WebPage::RequestUpdateFormNavigation(), m_pageID);
299 }
300
301 void WebPageProxy::moveFocus(int newIndex)
302 {
303     if (!isValid())
304         return;
305
306     process()->send(Messages::WebPage::MoveFocus(newIndex), m_pageID);
307 }
308
309 void WebPageProxy::updateFormNavigation(int length, int offset)
310 {
311     static_cast<PageClientImpl*>(m_pageClient)->updateFormNavigation(length, offset);
312 }
313
314 #if ENABLE(TIZEN_REDUCE_KEY_LAGGING)
315 Eina_Bool WebPageProxy::pageContentResumeTimerFired(void* data)
316 {
317     static_cast<WebPageProxy*>(data)->resumeActiveDOMObjectsAndAnimations();
318     static_cast<WebPageProxy*>(data)->m_pageContentResumeTimer = 0;
319     return ECORE_CALLBACK_CANCEL;
320 }
321 #endif
322
323 #if ENABLE(TIZEN_TEXT_CARET_HANDLING_WK2)
324 void WebPageProxy::setCaretPosition(const WebCore::IntPoint& pos)
325 {
326     if (!isValid())
327         return;
328
329     process()->send(Messages::WebPage::SetCaretPosition(pos), m_pageID);
330 }
331
332 void WebPageProxy::getCaretPosition(WebCore::IntRect& rect)
333 {
334     if (!isValid())
335         return;
336
337     process()->sendSync(Messages::WebPage::GetCaretPosition(), Messages::WebPage::GetCaretPosition::Reply(rect), m_pageID);
338 }
339 #endif
340
341 #if ENABLE(TIZEN_PLUGIN_CUSTOM_REQUEST)
342 void WebPageProxy::processPluginCustomRequest(const String& request, const String& msg)
343 {
344     if (String("requestKeyboard,plugin") == request) {
345         bool active = false;
346         if (String("show") == msg)
347             active = true;
348 #if ENABLE(TIZEN_ISF_PORT)
349         m_editorState = EditorState();
350         m_editorState.isContentEditable = active;
351         m_pageClient->updateTextInputState();
352 #endif
353     }
354 #if ENABLE(TIZEN_JSBRIDGE_PLUGIN)
355     else if (String("requestToNative,json") == request)
356         m_tizenClient.processJSBridgePlugin(this, request, msg);
357 #endif
358 }
359 #endif
360
361
362 #if ENABLE(TIZEN_INPUT_TAG_EXTENSION) || ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
363 void WebPageProxy::setFocusedInputElementValue(const String& inputValue)
364 {
365     if (!isValid())
366         return;
367
368     process()->send(Messages::WebPage::SetFocusedInputElementValue(inputValue), m_pageID);
369 }
370
371 String WebPageProxy::getFocusedInputElementValue()
372 {
373     if (!isValid())
374         return String();
375
376     String inputValue;
377     process()->sendSync(Messages::WebPage::GetFocusedInputElementValue(), Messages::WebPage::GetFocusedInputElementValue::Reply(inputValue), m_pageID);
378     return inputValue;
379 }
380 #endif
381
382 #if ENABLE(TIZEN_DATALIST_ELEMENT)
383 Vector<String> WebPageProxy::getFocusedInputElementDataList()
384 {
385     if (!isValid())
386         return Vector<String>();
387
388     Vector<String> optionList;
389     process()->sendSync(Messages::WebPage::GetFocusedInputElementDataList(), Messages::WebPage::GetFocusedInputElementDataList::Reply(optionList), m_pageID);
390     return optionList;
391 }
392 #endif
393
394 void WebPageProxy::focusedNodeChanged(const IntRect& focusedNodeRect)
395 {
396     static_cast<PageClientImpl*>(m_pageClient)->setFocusedNodeRect(focusedNodeRect);
397 }
398
399 void WebPageProxy::initializeTizenClient(const WKPageTizenClient* client)
400 {
401     m_tizenClient.initialize(client);
402 }
403
404 #if ENABLE(TIZEN_WEBKIT2_HIT_TEST)
405 WebHitTestResult::Data WebPageProxy::hitTestResultAtPoint(const IntPoint& point, int hitTestMode)
406 {
407     WebHitTestResult::Data hitTestResultData;
408     if (!isValid())
409         return hitTestResultData;
410
411     process()->sendSync(Messages::WebPage::HitTestResultAtPoint(point, hitTestMode),
412                         Messages::WebPage::HitTestResultAtPoint::Reply(hitTestResultData), m_pageID);
413
414     return hitTestResultData;
415 }
416 #endif
417
418 #if ENABLE(TIZEN_CONTEXT_MENU_WEBKIT_2)
419 void WebPageProxy::hideContextMenu()
420 {
421     if (m_activeContextMenu)
422         m_activeContextMenu->hideContextMenu();
423 }
424
425 String WebPageProxy::contextMenuAbsoluteLinkURLString()
426 {
427     if (!m_activeContextMenu)
428         return String();
429
430     return m_activeContextMenuHitTestResultData.absoluteLinkURL;
431 }
432
433 String WebPageProxy::contextMenuAbsoluteImageURLString()
434 {
435     if (!m_activeContextMenu)
436         return String();
437
438     return m_activeContextMenuHitTestResultData.absoluteImageURL;
439 }
440 #endif
441
442 #if ENABLE(TIZEN_WEBKIT2_CLIPBOARD_HELPER)
443 void WebPageProxy::pasteContextMenuSelected()
444 {
445     static_cast<PageClientImpl*>(m_pageClient)->pasteContextMenuSelected();
446 }
447
448 void WebPageProxy::didSelectPasteMenuFromContextMenu(const String& data, const String& type)
449 {
450     if (!isValid())
451         return;
452
453 #if ENABLE(TIZEN_CLIPBOARD) || ENABLE(TIZEN_PASTEBOARD)
454     process()->send(Messages::WebPage::SetClipboardDataForPaste(data, type), m_pageID);
455 #endif
456     WebContextMenuItemData item(ActionType, ContextMenuItemTagPaste, String("Paste"), true, false);
457     process()->send(Messages::WebPage::DidSelectItemFromActiveContextMenu(item), m_pageID);
458 }
459 #endif
460
461 #if ENABLE(TIZEN_CLIPBOARD) || ENABLE(TIZEN_PASTEBOARD)
462 void WebPageProxy::setClipboardData(const String& data, const String& type)
463 {
464     static_cast<PageClientImpl*>(m_pageClient)->setClipboardData(data, type);
465 }
466
467 void WebPageProxy::clearClipboardData()
468 {
469     static_cast<PageClientImpl*>(m_pageClient)->clearClipboardData();
470 }
471 #endif
472
473 #if ENABLE(TIZEN_WEBKIT2_CONTEXT_MENU_CLIPBOARD)
474 void WebPageProxy::executePasteFromClipboardItem(const String& data, const String& type)
475 {
476     if (!isValid())
477         return;
478
479 #if ENABLE(TIZEN_CLIPBOARD) || ENABLE(TIZEN_PASTEBOARD)
480     process()->send(Messages::WebPage::SetClipboardDataForPaste(data, type), m_pageID);
481 #endif
482     process()->send(Messages::WebPage::ExecuteEditCommandWithArgument("Paste", data), m_pageID);
483 }
484
485 void WebPageProxy::clipboardContextMenuSelected()
486 {
487     static_cast<PageClientImpl*>(m_pageClient)->clipboardContextMenuSelected();
488 }
489 #endif
490
491 #if ENABLE(TIZEN_WEBKIT2_REMOTE_WEB_INSPECTOR)
492 uint32_t WebPageProxy::startInspectorServer(uint32_t port)
493 {
494     if (!isValid())
495         return 0;
496
497     uint32_t assignedPort = 0;
498     process()->sendSync(Messages::WebPage::StartInspectorServer(port), Messages::WebPage::StartInspectorServer::Reply(assignedPort), m_pageID);
499     return assignedPort;
500 }
501
502 bool WebPageProxy::stopInspectorServer()
503 {
504     if (!isValid())
505         return false;
506
507     bool result = false;
508     process()->sendSync(Messages::WebPage::StopInspectorServer(), Messages::WebPage::StopInspectorServer::Reply(result), m_pageID);
509     return result;
510 }
511 #endif
512
513 #if ENABLE(TIZEN_MOBILE_WEB_PRINT)
514 void WebPageProxy::createPagesToPDF(const IntSize& surfaceSize, const IntSize& contentsSize, const String& fileName)
515 {
516     process()->send(Messages::WebPage::CreatePagesToPDF(surfaceSize, contentsSize, fileName), m_pageID);
517 }
518 #endif
519
520 #if ENABLE(TIZEN_WEB_STORAGE)
521 #if ENABLE(TIZEN_WEBKIT2_NUMBER_TYPE_SUPPORT)
522 void WebPageProxy::getWebStorageQuotaBytes(PassRefPtr<WebStorageQuotaCallback> prpCallback)
523 {
524     RefPtr<WebStorageQuotaCallback> callback = prpCallback;
525     if (!isValid()) {
526         callback->invalidate();
527         return;
528     }
529
530     uint64_t callbackID = callback->callbackID();
531     m_quotaCallbacks.set(callbackID, callback.get());
532     process()->send(Messages::WebPage::GetStorageQuotaBytes(callbackID), m_pageID);
533 }
534
535 void WebPageProxy::didGetWebStorageQuotaBytes(const uint32_t quota, uint64_t callbackID)
536 {
537     RefPtr<WebStorageQuotaCallback> callback = m_quotaCallbacks.take(callbackID);
538     if (!callback) {
539         // FIXME: Log error or assert.
540         // this can validly happen if a load invalidated the callback, though
541         return;
542     }
543
544     m_quotaCallbacks.remove(callbackID);
545
546     RefPtr<WebUInt32> uint32Object = WebUInt32::create(quota);
547     callback->performCallbackWithReturnValue(uint32Object.release().leakRef());
548 }
549 #endif
550
551 void WebPageProxy::setWebStorageQuotaBytes(uint32_t quota)
552 {
553     if (!isValid())
554         return;
555
556     process()->send(Messages::WebPage::SetStorageQuotaBytes(quota), m_pageID, 0);
557 }
558 #endif
559
560 void WebPageProxy::scale(double scaleFactor, const IntPoint& origin)
561 {
562 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
563     static_cast<PageClientImpl*>(m_pageClient)->scaleContents(scaleFactor, origin);
564 #else
565     scalePage(scaleFactor, origin);
566 #endif
567 }
568
569 void WebPageProxy::scaleImage(double scaleFactor, const IntPoint& origin)
570 {
571 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
572     static_cast<PageClientImpl*>(m_pageClient)->scaleImage(scaleFactor, origin);
573 #else
574     scalePage(scaleFactor, origin);
575 #endif
576 }
577
578 double WebPageProxy::scaleFactor()
579 {
580 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
581     return static_cast<PageClientImpl*>(m_pageClient)->scaleFactor();
582 #else
583     return pageScaleFactor();
584 #endif
585 }
586
587 #if ENABLE(TIZEN_ORIENTATION_EVENTS)
588 void WebPageProxy::sendOrientationChangeEvent(int orientation)
589 {
590     process()->send(Messages::WebPage::SendOrientationChangeEvent(orientation), m_pageID, 0);
591 }
592 #endif
593
594 void WebPageProxy::suspendPainting()
595 {
596     if (!isValid())
597         return;
598
599     process()->send(Messages::DrawingArea::SuspendPainting(), m_pageID);
600 }
601
602 #if ENABLE(TIZEN_WEBKIT2_TILED_AC)
603 void WebPageProxy::suspendPaintingOfInactiveView()
604 {
605     if (!isValid() || isViewVisible())
606         return;
607
608     process()->send(Messages::DrawingArea::SuspendPainting(), m_pageID);
609 }
610 #endif
611
612 void WebPageProxy::resumePainting()
613 {
614     if (!isValid())
615         return;
616
617     process()->send(Messages::DrawingArea::ResumePainting(), m_pageID);
618 }
619
620 void WebPageProxy::suspendJavaScriptAndResource()
621 {
622     if (!isValid())
623         return;
624
625     process()->send(Messages::WebPage::SuspendJavaScriptAndResources(), m_pageID);
626 }
627
628 void WebPageProxy::resumeJavaScriptAndResource()
629 {
630     if (!isValid())
631         return;
632
633     process()->send(Messages::WebPage::ResumeJavaScriptAndResources(), m_pageID);
634 }
635
636 #if ENABLE(TIZEN_PLUGIN_SUSPEND_RESUME)
637 void WebPageProxy::suspendPlugin()
638 {
639     if (!isValid())
640         return;
641
642     process()->send(Messages::WebPage::SuspendPlugin(), m_pageID);
643 }
644
645 void WebPageProxy::resumePlugin()
646 {
647     if (!isValid())
648         return;
649
650     process()->send(Messages::WebPage::ResumePlugin(), m_pageID);
651 }
652 #endif
653
654 #if ENABLE(TIZEN_CSS_OVERFLOW_SCROLL_ACCELERATION)
655 bool WebPageProxy::scrollOverflow(const FloatPoint& offset)
656 {
657     if (!isValid())
658         return false;
659
660 #if ENABLE(TIZEN_CSS_OVERFLOW_SCROLL_ACCELERATION_ON_UI_SIDE)
661     if (static_cast<PageClientImpl*>(m_pageClient)->isScrollableLayerFocused())
662         return drawingArea()->layerTreeCoordinatorProxy()->setOffsetForFocusedScrollingContentsLayer(offset);
663 #endif
664     if (static_cast<PageClientImpl*>(m_pageClient)->isScrollableNodeFocused()) {
665         bool scrolled = false;
666         process()->sendSync(Messages::WebPage::ScrollOverflow(offset), Messages::WebPage::ScrollOverflow::Reply(scrolled), m_pageID);
667         return scrolled;
668     }
669
670     return false;
671 }
672
673 bool WebPageProxy::setPressedNodeAtPoint(const IntPoint& point, bool checkOverflowLayer, WebLayerID& webLayerID)
674 {
675     if (!isValid())
676         return false;
677
678     bool pressed = false;
679     process()->sendSync(Messages::WebPage::SetPressedNodeAtPoint(point, checkOverflowLayer), Messages::WebPage::SetPressedNodeAtPoint::Reply(pressed, webLayerID), m_pageID);
680
681     return pressed;
682 }
683
684 void WebPageProxy::setOverflowResult(bool pressed, uint32_t webLayerID)
685 {
686     static_cast<PageClientImpl*>(m_pageClient)->setOverflowResult(pressed, webLayerID);
687 }
688 #endif
689
690 void WebPageProxy::executeEditCommandWithArgument(const String& commandName, const String& argument)
691 {
692     if (!isValid())
693         return;
694
695     DEFINE_STATIC_LOCAL(String, ignoreSpellingCommandName, ("ignoreSpelling"));
696     if (commandName == ignoreSpellingCommandName)
697         ++m_pendingLearnOrIgnoreWordMessageCount;
698
699     process()->send(Messages::WebPage::ExecuteEditCommandWithArgument(commandName, argument), m_pageID);
700 }
701
702 void WebPageProxy::replyJavaScriptAlert()
703 {
704     if (!m_alertReply)
705         return;
706
707     m_alertReply->send();
708     m_alertReply = nullptr;
709 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
710     process()->connection()->setForcelySetAllAsyncMessagesToDispatchEvenWhenWaitingForSyncReply(false);
711 #endif
712 }
713
714 void WebPageProxy::replyJavaScriptConfirm(bool result)
715 {
716     if (!m_confirmReply)
717         return;
718
719     m_confirmReply->send(result);
720     m_confirmReply = nullptr;
721 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
722     process()->connection()->setForcelySetAllAsyncMessagesToDispatchEvenWhenWaitingForSyncReply(false);
723 #endif
724 }
725
726 void WebPageProxy::replyJavaScriptPrompt(const String& result)
727 {
728     if (!m_promptReply)
729         return;
730
731     m_promptReply->send(result);
732     m_promptReply = nullptr;
733 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
734     process()->connection()->setForcelySetAllAsyncMessagesToDispatchEvenWhenWaitingForSyncReply(false);
735 #endif
736 }
737
738 #if ENABLE(TIZEN_SUPPORT_BEFORE_UNLOAD_CONFIRM_PANEL)
739 void WebPageProxy::replyBeforeUnloadConfirmPanel(bool result)
740 {
741     if (!m_beforeUnloadConfirmPanelReply)
742         return;
743
744     m_beforeUnloadConfirmPanelReply->send(result);
745     m_beforeUnloadConfirmPanelReply = nullptr;
746 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
747     process()->connection()->setForcelySetAllAsyncMessagesToDispatchEvenWhenWaitingForSyncReply(false);
748 #endif
749 }
750 #endif
751
752 #if ENABLE(TIZEN_CERTIFICATE_HANDLING)
753 void WebPageProxy::replyPolicyForCertificateError(bool result)
754 {
755     if (!m_allowedReply)
756         return;
757
758     m_allowedReply->send(result);
759     m_allowedReply = nullptr;
760 }
761 #endif
762
763 #if PLUGIN_ARCHITECTURE(X11)
764 void WebPageProxy::createPluginContainer(uint64_t& windowID)
765 {
766     notImplemented();
767 }
768
769 void WebPageProxy::windowedPluginGeometryDidChange(const WebCore::IntRect& frameRect, const WebCore::IntRect& clipRect, uint64_t windowID)
770 {
771     notImplemented();
772 }
773 #endif
774
775 void WebPageProxy::didRenderFrame()
776 {
777     static_cast<PageClientImpl*>(m_pageClient)->didRenderFrame();
778 }
779
780 void WebPageProxy::setBackgroundColor(double red, double green, double blue, double alpha)
781 {
782     static_cast<PageClientImpl*>(m_pageClient)->setBackgroundColor(red, green, blue, alpha);
783 }
784
785 #if ENABLE(TIZEN_WEBKIT2_TILED_AC)
786 bool WebPageProxy::makeContextCurrent()
787 {
788     return static_cast<PageClientImpl*>(m_pageClient)->makeContextCurrent();
789 }
790 #endif
791
792 #if ENABLE(TIZEN_WEBKIT2_GET_TEXT_STYLE_FOR_SELECTION)
793 void WebPageProxy::getTextStyleStateForSelection()
794 {
795     process()->send(Messages::WebPage::GetTextStyleStateForSelection(), m_pageID, 0);
796 }
797
798 void WebPageProxy::didGetTextStyleStateForSelection(int underlineState, int italicState, int boldState)
799 {
800     static_cast<PageClientImpl*>(m_pageClient)->didGetTextStyleStateForSelection(underlineState, italicState, boldState);
801 }
802 #endif
803
804 #if ENABLE(TIZEN_ICON_DATABASE)
805 void WebPageProxy::didReceiveIcon()
806 {
807     static_cast<PageClientImpl*>(m_pageClient)->didReceiveIcon();
808 }
809 #endif
810
811 #if ENABLE(TIZEN_MULTIPLE_SELECT)
812 void WebPageProxy::valueChangedForPopupMenuMultiple(WebPopupMenuProxy*, Vector<int32_t> newSelectedIndex)
813 {
814     process()->send(Messages::WebPage::DidChangeSelectedIndexForActivePopupMenuMultiple(newSelectedIndex), m_pageID);
815 }
816 #endif
817
818 #if ENABLE(TIZEN_WEBKIT2_HISTORICAL_RESTORE_VISIBLE_CONTENT_RECT)
819 void WebPageProxy::pageDidRequestRestoreVisibleContentRect(const IntPoint& point, float scale)
820 {
821     m_pageClient->pageDidRequestRestoreVisibleContentRect(point, scale);
822 }
823 #endif
824
825 #if ENABLE(TIZEN_OFFLINE_PAGE_SAVE)
826 void WebPageProxy::saveSerializedHTMLDataForMainPage(const String& serializedData, const String& fileName)
827 {
828     static_cast<PageClientImpl*>(m_pageClient)->saveSerializedHTMLDataForMainPage(serializedData, fileName);
829 }
830
831 void WebPageProxy::saveSubresourcesData(Vector<WebSubresourceTizen> subresourceData)
832 {
833     static_cast<PageClientImpl*>(m_pageClient)->saveSubresourcesData(subresourceData);
834 }
835
836 void WebPageProxy::startOfflinePageSave(String subresourceFolderName)
837 {
838     if (!isValid())
839         return;
840
841     process()->send(Messages::WebPage::StartOfflinePageSave(subresourceFolderName), m_pageID);
842 }
843 #endif
844
845 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
846 bool WebPageProxy::selectClosestWord(const IntPoint& point, bool isStartedTextSelectionFromOutside)
847 {
848     if (!isValid())
849         return false;
850
851     bool result = false;
852     process()->sendSync(Messages::WebPage::SelectClosestWord(point, isStartedTextSelectionFromOutside), Messages::WebPage::SelectClosestWord::Reply(result), m_pageID);
853     return result;
854 }
855
856 bool WebPageProxy::setLeftSelection(const IntPoint& point)
857 {
858     if (!isValid())
859         return false;
860
861     bool result = false;
862     process()->sendSync(Messages::WebPage::SetLeftSelection(point), Messages::WebPage::SetLeftSelection::Reply(result), m_pageID);
863     return result;
864 }
865
866 bool WebPageProxy::setRightSelection(const IntPoint& point)
867 {
868     if (!isValid())
869         return false;
870
871     bool result;
872     process()->sendSync(Messages::WebPage::SetRightSelection(point), Messages::WebPage::SetRightSelection::Reply(result), m_pageID);
873     return result;
874 }
875
876 bool WebPageProxy::getSelectionHandlers(IntRect& leftRect, IntRect& rightRect)
877 {
878     if (!isValid())
879         return false;
880
881     bool result = false;
882     process()->sendSync(Messages::WebPage::GetSelectionHandlers(), Messages::WebPage::GetSelectionHandlers::Reply(leftRect, rightRect), m_pageID);
883     if (!leftRect.size().isZero() || !rightRect.size().isZero())
884         result = true;
885
886     return result;
887 }
888
889 String WebPageProxy::getSelectionText()
890 {
891     String ret;
892     if (!isValid())
893         return ret;
894
895     process()->sendSync(Messages::WebPage::GetSelectionText(), Messages::WebPage::GetSelectionText::Reply(ret), m_pageID);
896     return ret;
897 }
898
899 bool WebPageProxy::selectionRangeClear()
900 {
901     if (!isValid())
902         return false;
903
904     bool result = false;
905     process()->sendSync(Messages::WebPage::SelectionRangeClear(), Messages::WebPage::SelectionRangeClear::Reply(result), m_pageID);
906     return result;
907 }
908
909 bool WebPageProxy::scrollContentByCharacter(const IntPoint& point, SelectionDirection direction)
910 {
911     if (!isValid())
912         return false;
913
914     bool result = false;
915     process()->sendSync(Messages::WebPage::ScrollContentByCharacter(point, direction), Messages::WebPage::ScrollContentByCharacter::Reply(result), m_pageID);
916     return result;
917 }
918 #endif
919
920 #if ENABLE(TIZEN_LINK_MAGNIFIER)
921 void WebPageProxy::getLinkMagnifierRect(const WebCore::IntPoint& position, const WebCore::IntSize& size)
922 {
923     process()->send(Messages::WebPage::GetLinkMagnifierRect(position, size), m_pageID);
924 }
925
926 void WebPageProxy::didGetLinkMagnifierRect(const IntPoint& position, const IntRect& rect)
927 {
928     if (!rect.isEmpty())
929         LinkMagnifierProxy::linkMagnifier().show(EwkViewImpl::fromEvasObject(viewWidget()), position, rect);
930     else
931         openLink(position);
932 }
933
934 void WebPageProxy::openLink(const IntPoint& position)
935 {
936 #if ENABLE(GESTURE_EVENTS)
937     IntPoint globalPosition(EwkViewImpl::fromEvasObject(viewWidget())->transformToScreen().mapPoint(position));
938     WebGestureEvent gesture(WebEvent::GestureSingleTap, position, globalPosition, WebEvent::Modifiers(0), ecore_time_get());
939     handleGestureEvent(gesture);
940 #endif
941 }
942 #endif
943
944 #if ENABLE(TIZEN_SCREEN_READER)
945 void WebPageProxy::raiseTapEvent(const IntPoint& position)
946 {
947 #if ENABLE(GESTURE_EVENTS)
948     IntPoint globalPosition = EwkViewImpl::fromEvasObject(viewWidget())->transformToScreen().mapPoint(position);
949     process()->send(Messages::WebPage::RaiseTapEvent(position, globalPosition), m_pageID);
950 #else
951     UNUSED_PARAM(position);
952 #endif
953 }
954
955 bool WebPageProxy::moveScreenReaderFocus(bool forward)
956 {
957     bool result;
958     process()->sendSync(Messages::WebPage::MoveScreenReaderFocus(forward), Messages::WebPage::MoveScreenReaderFocus::Reply(result), m_pageID);
959     return result;
960 }
961
962 void WebPageProxy::moveScreenReaderFocusByPoint(const IntPoint& point)
963 {
964     process()->send(Messages::WebPage::MoveScreenReaderFocusByPoint(point), m_pageID);
965 }
966
967 void WebPageProxy::recalcScreenReaderFocusRect()
968 {
969     if (!ScreenReaderProxy::screenReader().isEnabled())
970         return;
971
972     process()->send(Messages::WebPage::RecalcScreenReaderFocusRect(), m_pageID);
973 }
974
975 void WebPageProxy::clearScreenReader()
976 {
977     process()->send(Messages::WebPage::ClearScreenReader(), m_pageID);
978 }
979
980 void WebPageProxy::didScreenReaderFocusRectChanged(const IntRect& rect)
981 {
982 #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
983     FocusRing* focusRing = ewkViewGetFocusRing(viewWidget());
984     if (!focusRing)
985         return;
986
987     if (!rect.isEmpty())
988         focusRing->show(rect);
989     else
990         focusRing->hide(false);
991 #else
992     UNUSED_PARAM(rect);
993 #endif
994 }
995
996 void WebPageProxy::didScreenReaderTextChanged(const String& text)
997 {
998     ScreenReaderProxy::screenReader().setText(text);
999 }
1000 #endif
1001
1002 #if ENABLE(TIZEN_CSP)
1003 void WebPageProxy::setContentSecurityPolicy(const String& policy, WebCore::ContentSecurityPolicy::HeaderType type)
1004 {
1005     process()->send(Messages::WebPage::SetContentSecurityPolicy(policy, type), m_pageID);
1006 }
1007 #endif
1008
1009 #if ENABLE(TIZEN_APPLICATION_CACHE)
1010 void WebPageProxy::requestApplicationCachePermission(uint64_t frameID, const String& originIdentifier, PassRefPtr<Messages::WebPageProxy::RequestApplicationCachePermission::DelayedReply> allow)
1011 {
1012     WebFrameProxy* frame = process()->webFrame(frameID);
1013     MESSAGE_CHECK(frame);
1014
1015     // Since requestApplicationCachePermission() can spin a nested run loop we need to turn off the responsiveness timer.
1016     process()->responsivenessTimer()->stop();
1017
1018     m_applicationCacheReply = allow;
1019 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
1020     process()->connection()->setForcelySetAllAsyncMessagesToDispatchEvenWhenWaitingForSyncReply(true);
1021 #endif
1022     RefPtr<WebSecurityOrigin> origin = WebSecurityOrigin::createFromDatabaseIdentifier(originIdentifier);
1023
1024     if (!m_tizenClient.decidePolicyForApplicationCachePermissionRequest(this, origin.get(), frame))
1025         replyApplicationCachePermission(true);
1026 }
1027
1028 void WebPageProxy::replyApplicationCachePermission(bool allow)
1029 {
1030     if (!m_applicationCacheReply)
1031         return;
1032
1033     m_applicationCacheReply->send(allow);
1034     m_applicationCacheReply = nullptr;
1035 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
1036     process()->connection()->setForcelySetAllAsyncMessagesToDispatchEvenWhenWaitingForSyncReply(false);
1037 #endif
1038 }
1039 #endif
1040
1041 #if ENABLE(TIZEN_INDEXED_DATABASE)
1042 void WebPageProxy::exceededIndexedDatabaseQuota(uint64_t frameID, const String& originIdentifier, int64_t currentUsage, PassRefPtr<Messages::WebPageProxy::ExceededIndexedDatabaseQuota::DelayedReply> reply)
1043 {
1044     WebFrameProxy* frame = process()->webFrame(frameID);
1045     MESSAGE_CHECK(frame);
1046
1047     // Since exceededIndexedDatabaseQuota() can spin a nested run loop we need to turn off the responsiveness timer.
1048     process()->responsivenessTimer()->stop();
1049
1050     m_exceededIndexedDatabaseQuotaReply = reply;
1051 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
1052     process()->connection()->setForcelySetAllAsyncMessagesToDispatchEvenWhenWaitingForSyncReply(true);
1053 #endif
1054
1055     RefPtr<WebSecurityOrigin> origin = WebSecurityOrigin::createFromDatabaseIdentifier(originIdentifier);
1056
1057     if (!m_tizenClient.exceededIndexedDatabaseQuota(this, origin.get(), currentUsage, frame))
1058         replyExceededIndexedDatabaseQuota(false);
1059 }
1060
1061 void WebPageProxy::replyExceededIndexedDatabaseQuota(bool allow)
1062 {
1063     if (!m_exceededIndexedDatabaseQuotaReply)
1064         return;
1065
1066     m_exceededIndexedDatabaseQuotaReply->send(allow);
1067     m_exceededIndexedDatabaseQuotaReply = nullptr;
1068 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
1069     process()->connection()->setForcelySetAllAsyncMessagesToDispatchEvenWhenWaitingForSyncReply(false);
1070 #endif
1071 }
1072 #endif
1073
1074 #if ENABLE(TIZEN_SQL_DATABASE)
1075 void WebPageProxy::replyExceededDatabaseQuota(bool allow)
1076 {
1077     if (!m_exceededDatabaseQuotaReply) {
1078         TIZEN_LOGE("m_exceededDatabaseQuotaReply does not exist");
1079         return;
1080     }
1081
1082     m_exceededDatabaseQuotaReply->send(allow);
1083     m_exceededDatabaseQuotaReply = nullptr;
1084 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
1085     process()->connection()->setForcelySetAllAsyncMessagesToDispatchEvenWhenWaitingForSyncReply(false);
1086 #endif
1087 }
1088 #endif
1089
1090 #if ENABLE(TIZEN_FILE_SYSTEM)
1091 void WebPageProxy::exceededLocalFileSystemQuota(uint64_t frameID, const String& originIdentifier, int64_t currentUsage, PassRefPtr<Messages::WebPageProxy::ExceededLocalFileSystemQuota::DelayedReply> reply)
1092 {
1093     WebFrameProxy* frame = process()->webFrame(frameID);
1094     MESSAGE_CHECK(frame);
1095
1096     // Since exceededLocalFileSystemQuota() can spin a nested run loop we need to turn off the responsiveness timer.
1097     process()->responsivenessTimer()->stop();
1098     m_exceededLocalFileSystemQuotaReply = reply;
1099 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
1100     process()->connection()->setForcelySetAllAsyncMessagesToDispatchEvenWhenWaitingForSyncReply(true);
1101 #endif
1102
1103     RefPtr<WebSecurityOrigin> origin = WebSecurityOrigin::createFromDatabaseIdentifier(originIdentifier);
1104
1105     if (!m_tizenClient.exceededLocalFileSystemQuota(this, origin.get(), currentUsage, frame))
1106         replyExceededLocalFileSystemQuota(false);
1107 }
1108
1109 void WebPageProxy::replyExceededLocalFileSystemQuota(bool allow)
1110 {
1111     if (!m_exceededLocalFileSystemQuotaReply)
1112         return;
1113
1114     m_exceededLocalFileSystemQuotaReply->send(allow);
1115     m_exceededLocalFileSystemQuotaReply = nullptr;
1116 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
1117     process()->connection()->setForcelySetAllAsyncMessagesToDispatchEvenWhenWaitingForSyncReply(false);
1118 #endif
1119 }
1120 #endif
1121
1122 #endif // #if OS(TIZEN)
1123
1124 void WebPageProxy::handleInputMethodKeydown(bool& handled)
1125 {
1126 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
1127     handled = m_keyEventQueue.first().forwardedEvent.isFiltered();
1128 #else
1129     handled = m_keyEventQueue.first().isFiltered();
1130 #endif
1131 }
1132
1133 void WebPageProxy::confirmComposition(const String& compositionString)
1134 {
1135     if (!isValid())
1136         return;
1137
1138 #if ENABLE(TIZEN_ISF_PORT)
1139     if (m_didCancelCompositionFromWebProcess)
1140         return;
1141 #endif
1142
1143     process()->send(Messages::WebPage::ConfirmComposition(compositionString), m_pageID, 0);
1144 }
1145
1146 void WebPageProxy::setComposition(const String& compositionString, Vector<WebCore::CompositionUnderline>& underlines, int cursorPosition)
1147 {
1148     if (!isValid())
1149         return;
1150
1151 #if ENABLE(TIZEN_REDUCE_KEY_LAGGING)
1152     // Suspend layout&paint at the key input, and resume layout&paint after 150 ms.
1153     suspendActiveDOMObjectsAndAnimations();
1154     if (m_pageContentResumeTimer)
1155         ecore_timer_del(m_pageContentResumeTimer);
1156     m_pageContentResumeTimer = ecore_timer_add(150.0/1000.0, pageContentResumeTimerFired, this);
1157 #endif
1158
1159     process()->send(Messages::WebPage::SetComposition(compositionString, underlines, cursorPosition), m_pageID, 0);
1160 }
1161
1162 void WebPageProxy::cancelComposition()
1163 {
1164     if (!isValid())
1165         return;
1166
1167     process()->send(Messages::WebPage::CancelComposition(), m_pageID, 0);
1168 }
1169
1170 } // namespace WebKit