Merge "[Release] Webkit2-efl-123997_0.11.65" into tizen_2.2
[framework/web/webkit-efl.git] / Source / WebKit2 / UIProcess / WebPageProxy.h
1 /*
2  * Copyright (C) 2010, 2011 Apple Inc. All rights reserved.
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 #ifndef WebPageProxy_h
27 #define WebPageProxy_h
28
29 #include "APIObject.h"
30 #include "Connection.h"
31 #include "DragControllerAction.h"
32 #include "DrawingAreaProxy.h"
33 #include "EditorState.h"
34 #include "GeolocationPermissionRequestManagerProxy.h"
35 #if ENABLE(TOUCH_EVENTS)
36 #include "NativeWebTouchEvent.h"
37 #endif
38 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
39 #include "NativeWebKeyboardEvent.h"
40 #endif
41 #if PLATFORM(QT)
42 #include "QtNetworkRequestData.h"
43 #endif
44 #include "LayerTreeContext.h"
45 #include "NotificationPermissionRequestManagerProxy.h"
46 #include "PlatformProcessIdentifier.h"
47 #include "SandboxExtension.h"
48 #include "ShareableBitmap.h"
49 #include "WKBase.h"
50 #include "WKPagePrivate.h"
51 #include "WebColorChooserProxy.h"
52 #include "WebContextMenuItemData.h"
53 #include "WebCoreArgumentCoders.h"
54 #include "WebFindClient.h"
55 #include "WebFormClient.h"
56 #include "WebFrameProxy.h"
57 #include "WebFullScreenManagerProxy.h"
58 #include "WebHistoryClient.h"
59 #include "WebHitTestResult.h"
60 #include "WebLoaderClient.h"
61 #include "WebPageContextMenuClient.h"
62 #include "WebPolicyClient.h"
63 #include "WebPopupMenuProxy.h"
64 #include "WebResourceLoadClient.h"
65 #include "WebUIClient.h"
66 #include <WebCore/AlternativeTextClient.h>
67 #include <WebCore/Color.h>
68 #include <WebCore/DragActions.h>
69 #include <WebCore/DragSession.h>
70 #include <WebCore/HitTestResult.h>
71 #include <WebCore/Page.h>
72 #include <WebCore/PlatformScreen.h>
73 #include <WebCore/ScrollTypes.h>
74 #include <WebCore/TextChecking.h>
75 #include <wtf/HashMap.h>
76 #include <wtf/HashSet.h>
77 #include <wtf/OwnPtr.h>
78 #include <wtf/PassOwnPtr.h>
79 #include <wtf/PassRefPtr.h>
80 #include <wtf/RefPtr.h>
81 #include <wtf/Vector.h>
82 #include <wtf/text/WTFString.h>
83
84 #if ENABLE(DRAG_SUPPORT)
85 #include <WebCore/DragActions.h>
86 #include <WebCore/DragSession.h>
87 #endif
88
89 #if PLATFORM(EFL)
90 #include <Evas.h>
91 #include <Ecore_IMF_Evas.h>
92 #endif
93
94 #if OS(TIZEN)
95 #include "WebPageProxyMessages.h"
96 #include "WebTizenClient.h"
97 #include <WebCore/Color.h>
98 #endif
99
100 #if ENABLE(TIZEN_MEDIA_STREAM)
101 #include "UserMediaPermissionRequestManagerProxy.h"
102 #endif
103
104 #if ENABLE(TIZEN_OFFLINE_PAGE_SAVE)
105 #include "WebSubresourceTizen.h"
106 #endif
107
108 #if ENABLE(TIZEN_CSS_OVERFLOW_SCROLL_ACCELERATION)
109 #include "WebLayerTreeInfo.h"
110 #endif
111
112 #if ENABLE(TIZEN_CSP)
113 #include <WebCore/ContentSecurityPolicy.h>
114 #endif
115
116 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
117 #include <WebCore/VisibleSelection.h>
118 #endif
119
120 namespace CoreIPC {
121     class ArgumentDecoder;
122     class Connection;
123     class MessageID;
124 }
125
126 namespace WebCore {
127     class AuthenticationChallenge;
128     class Cursor;
129     class DragData;
130     class FloatRect;
131     class IntSize;
132     class ProtectionSpace;
133     struct FileChooserSettings;
134     struct TextAlternativeWithRange;
135     struct TextCheckingResult;
136     struct ViewportAttributes;
137     struct WindowFeatures;
138 }
139
140 #if PLATFORM(QT)
141 class QQuickNetworkReply;
142 #endif
143
144 #if USE(APPKIT)
145 #ifdef __OBJC__
146 @class WKView;
147 #else
148 class WKView;
149 #endif
150 #endif
151
152 #if ENABLE(WEB_INTENTS)
153 class WebIntentData;
154 #endif
155
156 namespace WebKit {
157
158 #if !ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
159 class NativeWebKeyboardEvent;
160 #endif
161 class NativeWebMouseEvent;
162 class NativeWebWheelEvent;
163 class PageClient;
164 class PlatformCertificateInfo;
165 class StringPairVector;
166 class WebBackForwardList;
167 class WebBackForwardListItem;
168 #if ENABLE(TIZEN_INPUT_COLOR_PICKER) // wait for upstream
169 class WebColorPickerResultListenerProxy;
170 #endif
171 class WebContextMenuProxy;
172 class WebData;
173 class WebEditCommandProxy;
174 class WebKeyboardEvent;
175 class WebMouseEvent;
176 class WebOpenPanelResultListenerProxy;
177 class WebPageGroup;
178 class WebProcessProxy;
179 #if ENABLE(TIZEN_OFFLINE_PAGE_SAVE)
180 class WebSubresourceTizen;
181 #endif
182 class WebURLRequest;
183 class WebWheelEvent;
184 struct AttributedString;
185 struct ColorSpaceData;
186 struct DictionaryPopupInfo;
187 struct EditorState;
188 struct PlatformPopupMenuData;
189 struct PrintInfo;
190 struct WebPageCreationParameters;
191 struct WebPopupItem;
192
193 #if PLATFORM(WIN)
194 struct WindowGeometry;
195 #endif
196
197 #if ENABLE(GESTURE_EVENTS)
198 class WebGestureEvent;
199 #endif
200
201 #if ENABLE(WEB_INTENTS)
202 struct IntentData;
203 #endif
204
205 #if ENABLE(WEB_INTENTS_TAG)
206 struct IntentServiceInfo;
207 #endif
208
209 typedef GenericCallback<WKStringRef, StringImpl*> StringCallback;
210 typedef GenericCallback<WKSerializedScriptValueRef, WebSerializedScriptValue*> ScriptValueCallback;
211 #if ENABLE(TIZEN_SUPPORT_WEBAPP_META_TAG)
212 typedef GenericCallback<WKBooleanRef> BooleanCallback;
213 typedef GenericCallback<WKDictionaryRef> DictionaryCallback;
214 #endif
215 #if ENABLE(TIZEN_WEB_STORAGE)
216 #if ENABLE(TIZEN_WEBKIT2_NUMBER_TYPE_SUPPORT)
217 typedef GenericCallback<WKUInt32Ref> WebStorageQuotaCallback;
218 #endif
219 #endif
220
221 #if PLATFORM(GTK)
222 typedef GenericCallback<WKErrorRef> PrintFinishedCallback;
223 #endif
224
225 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
226 template<typename T>
227 struct QueuedUIEvents {
228     QueuedUIEvents(const T& event)
229         : forwardedEvent(event)
230     {
231     }
232     T forwardedEvent;
233     Vector<T> deferredEvents;
234 };
235 #else
236 #if ENABLE(TOUCH_EVENTS)
237 struct QueuedTouchEvents {
238     QueuedTouchEvents(const NativeWebTouchEvent& event)
239         : forwardedEvent(event)
240     {
241     }
242     NativeWebTouchEvent forwardedEvent;
243     Vector<NativeWebTouchEvent> deferredTouchEvents;
244 };
245 #endif
246 #endif
247
248 // FIXME: Make a version of CallbackBase with three arguments, and define ValidateCommandCallback as a specialization.
249 class ValidateCommandCallback : public CallbackBase {
250 public:
251     typedef void (*CallbackFunction)(WKStringRef, bool, int32_t, WKErrorRef, void*);
252
253     static PassRefPtr<ValidateCommandCallback> create(void* context, CallbackFunction callback)
254     {
255         return adoptRef(new ValidateCommandCallback(context, callback));
256     }
257
258     virtual ~ValidateCommandCallback()
259     {
260         ASSERT(!m_callback);
261     }
262
263     void performCallbackWithReturnValue(StringImpl* returnValue1, bool returnValue2, int returnValue3)
264     {
265         ASSERT(m_callback);
266
267         m_callback(toAPI(returnValue1), returnValue2, returnValue3, 0, context());
268
269         m_callback = 0;
270     }
271     
272     void invalidate()
273     {
274         ASSERT(m_callback);
275
276         RefPtr<WebError> error = WebError::create();
277         m_callback(0, 0, 0, toAPI(error.get()), context());
278         
279         m_callback = 0;
280     }
281
282 private:
283
284     ValidateCommandCallback(void* context, CallbackFunction callback)
285         : CallbackBase(context)
286         , m_callback(callback)
287     {
288     }
289
290     CallbackFunction m_callback;
291 };
292
293 class WebPageProxy
294     : public APIObject
295 #if ENABLE(INPUT_TYPE_COLOR)
296     , public WebColorChooserProxy::Client
297 #endif
298     , public WebPopupMenuProxy::Client {
299 public:
300     static const Type APIType = TypePage;
301
302     static PassRefPtr<WebPageProxy> create(PageClient*, PassRefPtr<WebProcessProxy>, WebPageGroup*, uint64_t pageID);
303     virtual ~WebPageProxy();
304
305     uint64_t pageID() const { return m_pageID; }
306
307     WebFrameProxy* mainFrame() const { return m_mainFrame.get(); }
308     WebFrameProxy* focusedFrame() const { return m_focusedFrame.get(); }
309     WebFrameProxy* frameSetLargestFrame() const { return m_frameSetLargestFrame.get(); }
310
311     DrawingAreaProxy* drawingArea() const { return m_drawingArea.get(); }
312
313     WebBackForwardList* backForwardList() const { return m_backForwardList.get(); }
314
315 #if ENABLE(TIZEN_WEBKIT2_NOTIFY_SUSPEND_BY_REMOTE_WEB_INSPECTOR)
316     bool isContentSuspendedByInspector() { return m_contentSuspendedByInspector; }
317 #endif
318
319 #if ENABLE(INSPECTOR)
320     WebInspectorProxy* inspector();
321 #endif
322
323 #if ENABLE(FULLSCREEN_API)
324     WebFullScreenManagerProxy* fullScreenManager();
325 #endif
326
327 #if ENABLE(CONTEXT_MENUS)
328     void initializeContextMenuClient(const WKPageContextMenuClient*);
329 #endif
330     void initializeFindClient(const WKPageFindClient*);
331     void initializeFindMatchesClient(const WKPageFindMatchesClient*);
332     void initializeFormClient(const WKPageFormClient*);
333     void initializeLoaderClient(const WKPageLoaderClient*);
334     void initializePolicyClient(const WKPagePolicyClient*);
335     void initializeResourceLoadClient(const WKPageResourceLoadClient*);
336     void initializeUIClient(const WKPageUIClient*);
337 #if OS(TIZEN)
338     void initializeTizenClient(const WKPageTizenClient*);
339 #endif
340
341     void initializeWebPage();
342
343     void close();
344     bool tryClose();
345     bool isClosed() const { return m_isClosed; }
346
347     void loadURL(const String&);
348     void loadURLRequest(WebURLRequest*);
349     void loadHTMLString(const String& htmlString, const String& baseURL);
350     void loadAlternateHTMLString(const String& htmlString, const String& baseURL, const String& unreachableURL);
351     void loadPlainTextString(const String& string);
352     void loadWebArchiveData(const WebData*);
353 #if OS(TIZEN)
354     void loadContentsbyMimeType(const WebData*, const String& mimeType, const String& encoding, const String& baseURL);
355 #endif
356
357     void stopLoading();
358     void reload(bool reloadFromOrigin);
359
360     void goForward();
361     bool canGoForward() const;
362     void goBack();
363     bool canGoBack() const;
364
365     void goToBackForwardItem(WebBackForwardListItem*);
366     void tryRestoreScrollPosition();
367     void didChangeBackForwardList(WebBackForwardListItem* addedItem, Vector<RefPtr<APIObject> >* removedItems);
368     void shouldGoToBackForwardListItem(uint64_t itemID, bool& shouldGoToBackForwardListItem);
369     void willGoToBackForwardListItem(uint64_t itemID, CoreIPC::ArgumentDecoder* arguments);
370
371     String activeURL() const;
372     String provisionalURL() const;
373     String committedURL() const;
374
375     bool willHandleHorizontalScrollEvents() const;
376
377     bool canShowMIMEType(const String& mimeType) const;
378
379     bool drawsBackground() const { return m_drawsBackground; }
380     void setDrawsBackground(bool);
381
382     bool drawsTransparentBackground() const { return m_drawsTransparentBackground; }
383     void setDrawsTransparentBackground(bool);
384
385     void viewWillStartLiveResize();
386     void viewWillEndLiveResize();
387
388     void setInitialFocus(bool forward, bool isKeyboardEventValid, const WebKeyboardEvent&);
389     void setWindowResizerSize(const WebCore::IntSize&);
390     
391     void clearSelection();
392
393     void setViewNeedsDisplay(const WebCore::IntRect&);
394     void displayView();
395     void scrollView(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
396
397     enum {
398         ViewWindowIsActive = 1 << 0,
399         ViewIsFocused = 1 << 1,
400         ViewIsVisible = 1 << 2,
401         ViewIsInWindow = 1 << 3,
402     };
403     typedef unsigned ViewStateFlags;
404     void viewStateDidChange(ViewStateFlags flags);
405
406     WebCore::IntSize viewSize() const;
407     bool isViewVisible() const { return m_isVisible; }
408     bool isViewWindowActive() const;
409
410     void executeEditCommand(const String& commandName);
411 #if OS(TIZEN)
412     void executeEditCommandWithArgument(const String& commandName, const String& argument);
413 #endif
414     void validateCommand(const String& commandName, PassRefPtr<ValidateCommandCallback>);
415
416     const EditorState& editorState() const { return m_editorState; }
417     bool canDelete() const { return hasSelectedRange() && isContentEditable(); }
418     bool hasSelectedRange() const { return m_editorState.selectionIsRange; }
419     bool isContentEditable() const { return m_editorState.isContentEditable; }
420     
421     bool maintainsInactiveSelection() const { return m_maintainsInactiveSelection; }
422     void setMaintainsInactiveSelection(bool);
423 #if PLATFORM(QT)
424     void registerApplicationScheme(const String& scheme);
425     void resolveApplicationSchemeRequest(QtNetworkRequestData);
426     void sendApplicationSchemeReply(const QQuickNetworkReply*);
427     void authenticationRequiredRequest(const String& hostname, const String& realm, const String& prefilledUsername, String& username, String& password);
428     void certificateVerificationRequest(const String& hostname, bool& ignoreErrors);
429     void proxyAuthenticationRequiredRequest(const String& hostname, uint16_t port, const String& prefilledUsername, String& username, String& password);
430     void setUserScripts(const Vector<String>&);
431 #endif // PLATFORM(QT).
432 #if PLATFORM(EFL)
433     void setThemePath(const String&);
434 #endif
435
436 #if PLATFORM(QT)
437     void setComposition(const String& text, Vector<WebCore::CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd);
438     void confirmComposition(const String& compositionString, int64_t selectionStart, int64_t selectionLength);
439     void cancelComposition();
440 #endif
441 #if PLATFORM(MAC)
442     void updateWindowIsVisible(bool windowIsVisible);
443     void windowAndViewFramesChanged(const WebCore::IntRect& windowFrameInScreenCoordinates, const WebCore::IntRect& viewFrameInWindowCoordinates, const WebCore::IntPoint& accessibilityViewCoordinates);
444
445     void setComposition(const String& text, Vector<WebCore::CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd);
446     void confirmComposition();
447     void cancelComposition();
448     bool insertText(const String& text, uint64_t replacementRangeStart, uint64_t replacementRangeEnd);
449     bool insertDictatedText(const String& text, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, const Vector<WebCore::TextAlternativeWithRange>& dictationAlternatives);
450     void getMarkedRange(uint64_t& location, uint64_t& length);
451     void getSelectedRange(uint64_t& location, uint64_t& length);
452     void getAttributedSubstringFromRange(uint64_t location, uint64_t length, AttributedString&);
453     uint64_t characterIndexForPoint(const WebCore::IntPoint);
454     WebCore::IntRect firstRectForCharacterRange(uint64_t, uint64_t);
455     bool executeKeypressCommands(const Vector<WebCore::KeypressCommand>&);
456
457     void sendComplexTextInputToPlugin(uint64_t pluginComplexTextInputIdentifier, const String& textInput);
458     CGContextRef containingWindowGraphicsContext();
459     bool shouldDelayWindowOrderingForEvent(const WebMouseEvent&);
460     bool acceptsFirstMouse(int eventNumber, const WebMouseEvent&);
461     
462 #if USE(APPKIT)
463     WKView* wkView() const;
464 #endif
465 #endif
466 #if PLATFORM(WIN)
467     void didChangeCompositionSelection(bool);
468     void confirmComposition(const String&);
469     void setComposition(const String&, Vector<WebCore::CompositionUnderline>&, int);
470     WebCore::IntRect firstRectForCharacterInSelectedRange(int);
471     String getSelectedText();
472
473     bool gestureWillBegin(const WebCore::IntPoint&);
474     void gestureDidScroll(const WebCore::IntSize&);
475     void gestureDidEnd();
476
477     void setGestureReachedScrollingLimit(bool);
478
479     HWND nativeWindow() const;
480 #endif
481 #if PLATFORM(EFL)
482     void handleInputMethodKeydown(bool& handled);
483     void confirmComposition(const String&);
484     void setComposition(const String&, Vector<WebCore::CompositionUnderline>&, int);
485     void cancelComposition();
486 #endif
487 #if PLATFORM(GTK)
488     GtkWidget* viewWidget();
489 #endif
490 #if PLATFORM(EFL)
491     Evas_Object* viewWidget();
492 #endif
493
494 #if OS(TIZEN)
495 #if ENABLE(TIZEN_REDUCE_KEY_LAGGING)
496     static Eina_Bool pageContentResumeTimerFired(void* data);
497 #endif
498 #if ENABLE(TIZEN_TEXT_CARET_HANDLING_WK2)
499     void setCaretPosition(const WebCore::IntPoint&);
500     void getCaretPosition(WebCore::IntRect&);
501 #endif
502     bool scrollMainFrameBy(const WebCore::IntSize&);
503     void scrollMainFrameTo(const WebCore::IntPoint&);
504     WebCore::IntPoint& scrollPosition() { return m_scrollPosition; }
505     WebCore::IntSize& contentsSize() { return m_contentsSize; }
506     PassRefPtr<WebImage> createSnapshot(const WebCore::IntRect&, float);
507
508     void requestUpdateFormNavigation();
509     void moveFocus(int);
510     void updateFormNavigation(int length, int offset);
511     void focusedNodeChanged(const WebCore::IntRect&);
512
513 #if ENABLE(TIZEN_WEB_STORAGE)
514 #if ENABLE(TIZEN_WEBKIT2_NUMBER_TYPE_SUPPORT)
515     void getWebStorageQuotaBytes(PassRefPtr<WebStorageQuotaCallback>);
516     void didGetWebStorageQuotaBytes(const uint32_t quota, uint64_t callbackID);
517 #endif
518     void setWebStorageQuotaBytes(uint32_t quota);
519 #endif
520
521 #if ENABLE(TIZEN_WEBKIT2_HIT_TEST)
522     WebHitTestResult::Data hitTestResultAtPoint(const WebCore::IntPoint&, int hitTestMode = WebHitTestResult::HitTestModeDefault);
523 #endif
524 #if ENABLE(TIZEN_CONTEXT_MENU_WEBKIT_2)
525     void hideContextMenu();
526     String contextMenuAbsoluteLinkURLString();
527     String contextMenuAbsoluteImageURLString();
528 #endif
529 #if ENABLE(TIZEN_CLIPBOARD) || ENABLE(TIZEN_PASTEBOARD)
530     void setClipboardData(const String& data, const String& type);
531     void clearClipboardData();
532 #endif
533 #if ENABLE(TIZEN_WEBKIT2_CLIPBOARD_HELPER)
534     void didSelectPasteMenuFromContextMenu(const String& data, const String& type);
535     void pasteContextMenuSelected();
536 #endif
537 #if ENABLE(TIZEN_WEBKIT2_CONTEXT_MENU_CLIPBOARD)
538     void clipboardContextMenuSelected();
539     void executePasteFromClipboardItem(const String& data, const String& type);
540 #endif
541 #if ENABLE(TIZEN_REMOTE_WEB_INSPECTOR)
542     uint32_t startInspectorServer(uint32_t port);
543     bool stopInspectorServer();
544 #endif
545 #if ENABLE(TIZEN_MOBILE_WEB_PRINT)
546     void createPagesToPDF(const WebCore::IntSize&, const WebCore::IntSize&, const String&);
547 #endif
548
549     void scale(double, const WebCore::IntPoint&);
550     void scaleImage(double, const WebCore::IntPoint&);
551     double scaleFactor();
552
553 #if ENABLE(TIZEN_ORIENTATION_EVENTS)
554     void sendOrientationChangeEvent(int orientation);
555 #endif
556
557     void suspendPainting();
558     void resumePainting();
559
560     void suspendJavaScriptAndResource();
561     void resumeJavaScriptAndResource();
562
563     void suspendAnimations();
564     void resumeAnimations();
565
566 #if ENABLE(TIZEN_PLUGIN_SUSPEND_RESUME)
567     void suspendPlugin();
568     void resumePlugin();
569 #endif
570
571 #if ENABLE(TIZEN_WEBKIT2_TILED_AC)
572     void purgeBackingStoresOfInactiveView();
573 #endif
574
575 #endif // #if OS(TIZEN)
576
577 #if USE(TILED_BACKING_STORE)
578     void setViewportSize(const WebCore::IntSize&);
579 #endif
580
581     void handleMouseEvent(const NativeWebMouseEvent&);
582     void handleWheelEvent(const NativeWebWheelEvent&);
583     void handleKeyboardEvent(const NativeWebKeyboardEvent&);
584 #if ENABLE(GESTURE_EVENTS)
585     void handleGestureEvent(const WebGestureEvent&);
586 #endif
587 #if ENABLE(TOUCH_EVENTS)
588     void handleTouchEvent(const NativeWebTouchEvent&);
589 #if PLATFORM(QT)
590     void handlePotentialActivation(const WebCore::IntPoint& touchPoint, const WebCore::IntSize& touchArea);
591 #endif
592 #endif
593
594     void scrollBy(WebCore::ScrollDirection, WebCore::ScrollGranularity);
595     void centerSelectionInVisibleArea();
596
597     String pageTitle() const;
598     const String& toolTip() const { return m_toolTip; }
599
600     void setUserAgent(const String&);
601     const String& userAgent() const { return m_userAgent; }
602     void setApplicationNameForUserAgent(const String&);
603     const String& applicationNameForUserAgent() const { return m_applicationNameForUserAgent; }
604     void setCustomUserAgent(const String&);
605     const String& customUserAgent() const { return m_customUserAgent; }
606     static String standardUserAgent(const String& applicationName = String());
607 #if ENABLE(TIZEN_CUSTOM_HEADERS)
608     void addCustomHeader(const String&, const String&);
609     void removeCustomHeader(const String&);
610     void clearCustomHeaders();
611 #endif
612
613     bool supportsTextEncoding() const;
614     void setCustomTextEncodingName(const String&);
615     String customTextEncodingName() const { return m_customTextEncodingName; }
616
617     void resumeActiveDOMObjectsAndAnimations();
618     void suspendActiveDOMObjectsAndAnimations();
619
620     double estimatedProgress() const;
621
622     void terminateProcess();
623
624     typedef bool (*WebPageProxySessionStateFilterCallback)(WKPageRef, WKStringRef type, WKTypeRef object, void* context);
625     PassRefPtr<WebData> sessionStateData(WebPageProxySessionStateFilterCallback, void* context) const;
626     void restoreFromSessionStateData(WebData*);
627
628     bool supportsTextZoom() const;
629     double textZoomFactor() const { return m_mainFrameHasCustomRepresentation ? 1 : m_textZoomFactor; }
630     void setTextZoomFactor(double);
631     double pageZoomFactor() const;
632     void setPageZoomFactor(double);
633     void setPageAndTextZoomFactors(double pageZoomFactor, double textZoomFactor);
634
635     void scalePage(double scale, const WebCore::IntPoint& origin);
636     double pageScaleFactor() const { return m_pageScaleFactor; }
637
638     float deviceScaleFactor() const;
639     void setIntrinsicDeviceScaleFactor(float);
640     void setCustomDeviceScaleFactor(float);
641     void windowScreenDidChange(PlatformDisplayID);
642
643     LayerHostingMode layerHostingMode() const { return m_layerHostingMode; }
644
645     void setUseFixedLayout(bool);
646     void setFixedLayoutSize(const WebCore::IntSize&);
647     bool useFixedLayout() const { return m_useFixedLayout; };
648     const WebCore::IntSize& fixedLayoutSize() const { return m_fixedLayoutSize; };
649
650     bool hasHorizontalScrollbar() const { return m_mainFrameHasHorizontalScrollbar; }
651     bool hasVerticalScrollbar() const { return m_mainFrameHasVerticalScrollbar; }
652
653     bool isPinnedToLeftSide() const { return m_mainFrameIsPinnedToLeftSide; }
654     bool isPinnedToRightSide() const { return m_mainFrameIsPinnedToRightSide; }
655
656     void setPaginationMode(WebCore::Page::Pagination::Mode);
657     WebCore::Page::Pagination::Mode paginationMode() const { return m_paginationMode; }
658     void setPaginationBehavesLikeColumns(bool);
659     bool paginationBehavesLikeColumns() const { return m_paginationBehavesLikeColumns; }
660     void setPageLength(double);
661     double pageLength() const { return m_pageLength; }
662     void setGapBetweenPages(double);
663     double gapBetweenPages() const { return m_gapBetweenPages; }
664     unsigned pageCount() const { return m_pageCount; }
665
666 #if PLATFORM(MAC)
667     // Called by the web process through a message.
668     void registerWebProcessAccessibilityToken(const CoreIPC::DataReference&);
669     // Called by the UI process when it is ready to send its tokens to the web process.
670     void registerUIProcessAccessibilityTokens(const CoreIPC::DataReference& elemenToken, const CoreIPC::DataReference& windowToken);
671     bool readSelectionFromPasteboard(const String& pasteboardName);
672     String stringSelectionForPasteboard();
673     PassRefPtr<WebCore::SharedBuffer> dataSelectionForPasteboard(const String& pasteboardType);
674     void makeFirstResponder();
675
676     ColorSpaceData colorSpace();
677 #endif
678
679     void pageScaleFactorDidChange(double);
680
681     void setMemoryCacheClientCallsEnabled(bool);
682
683     // Find.
684     void findString(const String&, FindOptions, unsigned maxMatchCount);
685     void findStringMatches(const String&, FindOptions, unsigned maxMatchCount);
686     void getImageForFindMatch(int32_t matchIndex);
687     void selectFindMatch(int32_t matchIndex);
688     void didGetImageForFindMatch(const ShareableBitmap::Handle& contentImageHandle, uint32_t matchIndex);
689     void hideFindUI();
690     void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
691     void didCountStringMatches(const String&, uint32_t matchCount);
692     void setFindIndicator(const WebCore::FloatRect& selectionRectInWindowCoordinates, const Vector<WebCore::FloatRect>& textRectsInSelectionRectCoordinates, float contentImageScaleFactor, const ShareableBitmap::Handle& contentImageHandle, bool fadeOut, bool animate);
693     void didFindString(const String&, uint32_t matchCount);
694     void didFailToFindString(const String&);
695     void didFindStringMatches(const String&, Vector<Vector<WebCore::IntRect> > matchRects, int32_t firstIndexAfterSelection);
696 #if PLATFORM(WIN)
697     void didInstallOrUninstallPageOverlay(bool);
698 #endif
699
700     void getContentsAsString(PassRefPtr<StringCallback>);
701 #if ENABLE(MHTML)
702     void getContentsAsMHTMLData(PassRefPtr<DataCallback>, bool useBinaryEncoding);
703 #endif
704     void getMainResourceDataOfFrame(WebFrameProxy*, PassRefPtr<DataCallback>);
705     void getResourceDataFromFrame(WebFrameProxy*, WebURL*, PassRefPtr<DataCallback>);
706     void getRenderTreeExternalRepresentation(PassRefPtr<StringCallback>);
707     void getSelectionOrContentsAsString(PassRefPtr<StringCallback>);
708     void getSourceForFrame(WebFrameProxy*, PassRefPtr<StringCallback>);
709     void getWebArchiveOfFrame(WebFrameProxy*, PassRefPtr<DataCallback>);
710     void runJavaScriptInMainFrame(const String&, PassRefPtr<ScriptValueCallback>);
711     void forceRepaint(PassRefPtr<VoidCallback>);
712
713 #if ENABLE(WEB_INTENTS)
714     void deliverIntentToFrame(WebFrameProxy*, WebIntentData*);
715 #endif
716
717     float headerHeight(WebFrameProxy*);
718     float footerHeight(WebFrameProxy*);
719     void drawHeader(WebFrameProxy*, const WebCore::FloatRect&);
720     void drawFooter(WebFrameProxy*, const WebCore::FloatRect&);
721
722 #if ENABLE(SCREEN_ORIENTATION_SUPPORT) && ENABLE(TIZEN_SCREEN_ORIENTATION_SUPPORT)
723     void lockOrientation(int orientation, bool& result);
724     void unlockOrientation();
725 #endif
726
727 #if PLATFORM(MAC)
728     // Dictionary.
729     void performDictionaryLookupAtLocation(const WebCore::FloatPoint&);
730 #endif
731
732     void receivedPolicyDecision(WebCore::PolicyAction, WebFrameProxy*, uint64_t listenerID);
733
734     void backForwardRemovedItem(uint64_t itemID);
735
736 #if ENABLE(DRAG_SUPPORT)    
737     // Drag and drop support.
738     void dragEntered(WebCore::DragData*, const String& dragStorageName = String());
739     void dragUpdated(WebCore::DragData*, const String& dragStorageName = String());
740     void dragExited(WebCore::DragData*, const String& dragStorageName = String());
741 #if ENABLE(TIZEN_DRAG_SUPPORT)
742     void performDrag(WebCore::DragData*, const String& dragStorageName = String());
743 #else
744     void performDrag(WebCore::DragData*, const String& dragStorageName, const SandboxExtension::Handle&, const SandboxExtension::HandleArray&);
745 #endif
746
747     void didPerformDragControllerAction(WebCore::DragSession);
748     void dragEnded(const WebCore::IntPoint& clientPosition, const WebCore::IntPoint& globalPosition, uint64_t operation);
749 #if PLATFORM(MAC)
750     void setDragImage(const WebCore::IntPoint& clientPosition, const ShareableBitmap::Handle& dragImageHandle, bool isLinkDrag);
751     void setPromisedData(const String& pasteboardName, const SharedMemory::Handle& imageHandle, uint64_t imageSize, const String& filename, const String& extension,
752                          const String& title, const String& url, const String& visibleURL, const SharedMemory::Handle& archiveHandle, uint64_t archiveSize);
753 #endif
754 #if PLATFORM(WIN)
755     void startDragDrop(const WebCore::IntPoint& imagePoint, const WebCore::IntPoint& dragPoint, uint64_t okEffect, const HashMap<UINT, Vector<String> >& dataMap, uint64_t fileSize, const String& pathname, const SharedMemory::Handle& fileContentHandle, const WebCore::IntSize& dragImageSize, const SharedMemory::Handle& dragImageHandle, bool isLinkDrag);
756 #endif
757 #if PLATFORM(QT) || PLATFORM(GTK) || ENABLE(TIZEN_DRAG_SUPPORT)
758     void startDrag(const WebCore::DragData&, const ShareableBitmap::Handle& dragImage);
759 #endif
760 #endif
761
762     void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
763     void didReceiveSyncMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, OwnPtr<CoreIPC::ArgumentEncoder>&);
764
765     void processDidBecomeUnresponsive();
766     void interactionOccurredWhileProcessUnresponsive();
767     void processDidBecomeResponsive();
768     void processDidCrash();
769
770 #if USE(ACCELERATED_COMPOSITING)
771     virtual void enterAcceleratedCompositingMode(const LayerTreeContext&);
772     virtual void exitAcceleratedCompositingMode();
773     virtual void updateAcceleratedCompositingMode(const LayerTreeContext&);
774 #endif
775     
776     void didDraw();
777
778     enum UndoOrRedo { Undo, Redo };
779     void addEditCommand(WebEditCommandProxy*);
780     void removeEditCommand(WebEditCommandProxy*);
781     bool isValidEditCommand(WebEditCommandProxy*);
782     void registerEditCommand(PassRefPtr<WebEditCommandProxy>, UndoOrRedo);
783
784 #if PLATFORM(MAC)
785     void registerKeypressCommandName(const String& name) { m_knownKeypressCommandNames.add(name); }
786     bool isValidKeypressCommandName(const String& name) const { return m_knownKeypressCommandNames.contains(name); }
787 #endif
788
789     WebProcessProxy* process() const;
790     PlatformProcessIdentifier processIdentifier() const;
791
792     WebPageGroup* pageGroup() const { return m_pageGroup.get(); }
793
794     bool isValid();
795
796     const String& urlAtProcessExit() const { return m_urlAtProcessExit; }
797     WebFrameProxy::LoadState loadStateAtProcessExit() const { return m_loadStateAtProcessExit; }
798
799 #if ENABLE(DRAG_SUPPORT)
800     WebCore::DragSession dragSession() const { return m_currentDragSession; }
801     void resetDragOperation() { m_currentDragSession = WebCore::DragSession(); }
802 #endif
803
804     void preferencesDidChange();
805
806 #if ENABLE(CONTEXT_MENUS)
807     // Called by the WebContextMenuProxy.
808     void contextMenuItemSelected(const WebContextMenuItemData&);
809 #endif
810
811     // Called by the WebOpenPanelResultListenerProxy.
812     void didChooseFilesForOpenPanel(const Vector<String>&);
813     void didCancelForOpenPanel();
814
815     WebPageCreationParameters creationParameters() const;
816
817 #if PLATFORM(QT)
818     void findZoomableAreaForPoint(const WebCore::IntPoint&, const WebCore::IntSize&);
819     void didReceiveMessageFromNavigatorQtObject(const String&);
820 #endif
821
822 #if PLATFORM(QT) || PLATFORM(EFL)
823     void handleDownloadRequest(DownloadProxy*);
824 #endif
825 #if OS(TIZEN)
826     void findZoomableAreaForPoint(const WebCore::IntPoint&, const WebCore::IntSize&);
827 #endif // #if OS(TIZEN)
828
829     void advanceToNextMisspelling(bool startBeforeSelection) const;
830     void changeSpellingToWord(const String& word) const;
831 #if USE(APPKIT)
832     void uppercaseWord();
833     void lowercaseWord();
834     void capitalizeWord();
835 #endif
836
837 #if PLATFORM(MAC)
838     bool isSmartInsertDeleteEnabled() const { return m_isSmartInsertDeleteEnabled; }
839     void setSmartInsertDeleteEnabled(bool);
840 #endif
841
842 #if PLATFORM(GTK)
843     String accessibilityPlugID() const { return m_accessibilityPlugID; }
844 #endif
845
846     void setCanRunModal(bool);
847     bool canRunModal();
848
849     void beginPrinting(WebFrameProxy*, const PrintInfo&);
850     void endPrinting();
851     void computePagesForPrinting(WebFrameProxy*, const PrintInfo&, PassRefPtr<ComputedPagesCallback>);
852 #if PLATFORM(MAC) || PLATFORM(WIN)
853     void drawRectToPDF(WebFrameProxy*, const PrintInfo&, const WebCore::IntRect&, PassRefPtr<DataCallback>);
854     void drawPagesToPDF(WebFrameProxy*, const PrintInfo&, uint32_t first, uint32_t count, PassRefPtr<DataCallback>);
855 #elif PLATFORM(GTK)
856     void drawPagesForPrinting(WebFrameProxy*, const PrintInfo&, PassRefPtr<PrintFinishedCallback>);
857 #endif
858
859     const String& pendingAPIRequestURL() const { return m_pendingAPIRequestURL; }
860
861     void flashBackingStoreUpdates(const Vector<WebCore::IntRect>& updateRects);
862
863 #if PLATFORM(MAC)
864     void handleAlternativeTextUIResult(const String& result);
865 #endif
866
867     static void setDebugPaintFlags(WKPageDebugPaintFlags flags) { s_debugPaintFlags = flags; }
868     static WKPageDebugPaintFlags debugPaintFlags() { return s_debugPaintFlags; }
869
870     // Color to be used with kWKDebugFlashViewUpdates.
871     static WebCore::Color viewUpdatesFlashColor();
872
873     // Color to be used with kWKDebugFlashBackingStoreUpdates.
874     static WebCore::Color backingStoreUpdatesFlashColor();
875
876     void saveDataToFileInDownloadsFolder(const String& suggestedFilename, const String& mimeType, const String& originatingURLString, WebData*);
877
878     void linkClicked(const String&, const WebMouseEvent&);
879
880     WebCore::IntRect visibleScrollerThumbRect() const { return m_visibleScrollerThumbRect; }
881
882     uint64_t renderTreeSize() const { return m_renderTreeSize; }
883
884     void setShouldSendEventsSynchronously(bool sync) { m_shouldSendEventsSynchronously = sync; };
885 #if ENABLE(TIZEN_INPUT_TAG_EXTENSION) || ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
886     void setFocusedInputElementValue(const String& inputValue);
887     String getFocusedInputElementValue();
888 #endif
889
890 #if ENABLE(TIZEN_DATALIST_ELEMENT)
891     Vector<String> getFocusedInputElementDataList();
892 #endif
893
894     void printMainFrame();
895     
896 #if ENABLE(TIZEN_REGISTER_PROTOCOL_HANDLER)
897     void registerProtocolHandler(const String& scheme, const String& baseURL, const String& url, const String& title);
898 #endif
899 #if ENABLE(TIZEN_CUSTOM_SCHEME_HANDLER)
900     void isProtocolHandlerRegistered(const String& scheme, const String& baseURL, const String& url, unsigned int& result);
901     void unregisterProtocolHandler(const String& scheme, const String& baseURL, const String& url);
902 #endif
903 #if ENABLE(TIZEN_REGISTER_CONTENT_HANDLER)
904     void registerContentHandler(const String& mimeType, const String& baseURL, const String& url, const String& title);
905     void isContentHandlerRegistered(const String& mimeType, const String& baseURL, const String& url, unsigned int& result);
906     void unregisterContentHandler(const String& mimeType, const String& baseURL, const String& url);
907 #endif
908
909 #if ENABLE(TIZEN_SEARCH_PROVIDER)
910     void addSearchProvider(const String& baseURL, const String& engineURL);
911     void isSearchProviderInstalled(const String& baseURL, const String& engineURL, uint64_t& result);
912 #endif
913
914 #if ENABLE(TIZEN_SUPPORT_WEBAPP_META_TAG)
915     void getStandaloneStatus(bool& standalone);
916     void getWebAppCapable(PassRefPtr<BooleanCallback>);
917     void getWebAppIconURL(PassRefPtr<StringCallback>);
918     void getWebAppIconURLs(PassRefPtr<DictionaryCallback>);
919 #endif
920
921     void setMediaVolume(float);
922
923 #if OS(TIZEN)
924     void replyJavaScriptAlert();
925     void replyJavaScriptConfirm(bool result);
926     void replyJavaScriptPrompt(const String& result);
927 #if ENABLE(TIZEN_SUPPORT_BEFORE_UNLOAD_CONFIRM_PANEL)
928     void replyBeforeUnloadConfirmPanel(bool result);
929 #endif
930 #endif
931
932 #if ENABLE(TIZEN_ON_AUTHENTICATION_REQUESTED)
933     void replyReceiveAuthenticationChallengeInFrame(bool result);
934 #endif
935
936 #if ENABLE(TIZEN_CERTIFICATE_HANDLING)
937     void replyPolicyForCertificateError(bool result);
938 #endif
939
940     // WebPopupMenuProxy::Client
941     virtual NativeWebMouseEvent* currentlyProcessedMouseDownEvent();
942
943 #if ENABLE(TIZEN_PAGE_VISIBILITY_API)
944     void setPageVisibility(WebCore::PageVisibilityState, bool isInitialState);
945 #endif
946
947 #if ENABLE(TIZEN_CSS_OVERFLOW_SCROLL_ACCELERATION)
948     bool scrollOverflow(const WebCore::FloatPoint&);
949     bool setPressedNodeAtPoint(const WebCore::IntPoint&, bool checkOverflowLayer, WebLayerID&);
950     void setLoadingFinished(const bool isLoadingFinished) { m_isLoadingFinished = isLoadingFinished; }
951     bool isLoadingFinished() const { return m_isLoadingFinished; }
952     bool askOverflow() const { return m_askOverflow; }
953     void setOverflowResult(bool pressed, WebLayerID webLayerID);
954 #endif
955
956 #if ENABLE(TIZEN_ISF_PORT)
957     int getCursorOffset();
958     void getSurroundingTextAndCursorOffset(String&, int&);
959     WebCore::IntRect getSelectionRect(bool);
960     void deleteSurroundingText(int, int);
961
962     void didCancelComposition();
963     void removeInputMethodContext(uintptr_t);
964 #endif
965
966     void setBackgroundColor(double red, double green, double blue, double alpha);
967 #if ENABLE(TIZEN_WEBKIT2_TILED_AC)
968     bool makeContextCurrent();
969 #endif
970
971 #if OS(TIZEN)
972     void didRenderFrame();
973 #endif
974
975 #if ENABLE(TIZEN_WEBKIT2_GET_TEXT_STYLE_FOR_SELECTION)
976     void getTextStyleStateForSelection();
977     void didGetTextStyleStateForSelection(int underlineState, int italicState, int boldState);
978 #endif
979
980 #if PLATFORM(GTK) && USE(TEXTURE_MAPPER_GL)
981     void widgetMapped(uint64_t nativeWindowId);
982 #endif
983
984     void setSuppressVisibilityUpdates(bool flag) { m_suppressVisibilityUpdates = flag; }
985     bool suppressVisibilityUpdates() { return m_suppressVisibilityUpdates; }
986
987 #if ENABLE(TIZEN_INPUT_COLOR_PICKER) // wait for upstream
988 #if ENABLE(INPUT_TYPE_COLOR)
989     void setColorChooserColor(const WebCore::Color&);
990     void endColorChooser();
991 #endif
992 #endif
993
994 #if ENABLE(TIZEN_MULTIPLE_SELECT)
995     void valueChangedForPopupMenuMultiple(WebPopupMenuProxy*, Vector<int32_t> newSelectedIndex);
996 #endif
997
998 #if ENABLE(TIZEN_NATIVE_MEMORY_SNAPSHOT)
999     void dumpMemorySnapshot();
1000 #endif
1001
1002 #if ENABLE(TIZEN_OFFLINE_PAGE_SAVE)
1003     void saveSerializedHTMLDataForMainPage(const String& serializedData, const String& fileName);
1004     void saveSubresourcesData(Vector<WebSubresourceTizen> subresourceData);
1005     void startOfflinePageSave(String subresourceFolderName);
1006 #endif
1007
1008 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
1009     bool selectClosestWord(const WebCore::IntPoint&, bool isStartedTextSelectionFromOutside);
1010     bool setLeftSelection(const WebCore::IntPoint&);
1011     bool setRightSelection(const WebCore::IntPoint&);
1012     bool getSelectionHandlers(WebCore::IntRect& leftRect, WebCore::IntRect& rightRect);
1013     String getSelectionText();
1014     bool selectionRangeClear();
1015     bool scrollContentByCharacter(const WebCore::IntPoint&, WebCore::SelectionDirection direction);
1016     bool scrollContentByLine(const WebCore::IntPoint&, WebCore::SelectionDirection direction);
1017 #endif
1018
1019 #if ENABLE(TIZEN_LINK_MAGNIFIER)
1020     void getLinkMagnifierRect(const WebCore::IntPoint&, const WebCore::IntSize&);
1021     void openLink(const WebCore::IntPoint&);
1022 #endif
1023
1024 #if ENABLE(TIZEN_SCREEN_READER)
1025     void raiseTapEvent(const WebCore::IntPoint&);
1026     bool moveScreenReaderFocus(bool);
1027     void moveScreenReaderFocusByPoint(const WebCore::IntPoint&);
1028     void recalcScreenReaderFocusRect();
1029     void clearScreenReader();
1030
1031     void didScreenReaderFocusRectChanged(const WebCore::IntRect&);
1032     void didScreenReaderTextChanged(const String&);
1033 #endif
1034
1035 #if ENABLE(TIZEN_CSP)
1036     void setContentSecurityPolicy(const String& policy, WebCore::ContentSecurityPolicy::HeaderType type);
1037 #endif
1038
1039 #if ENABLE(TIZEN_APPLICATION_CACHE)
1040     void replyApplicationCachePermission(bool allow);
1041 #endif
1042
1043 #if ENABLE(TIZEN_INDEXED_DATABASE)
1044     void replyExceededIndexedDatabaseQuota(bool allow);
1045 #endif
1046
1047 #if ENABLE(TIZEN_SQL_DATABASE)
1048     void replyExceededDatabaseQuota(bool allow);
1049 #endif
1050
1051 #if ENABLE(TIZEN_FILE_SYSTEM)
1052     void replyExceededLocalFileSystemQuota(bool allow);
1053 #endif
1054
1055 #if ENABLE(TIZEN_USE_SETTINGS_FONT)
1056     void useSettingsFont();
1057 #endif
1058
1059 private:
1060     WebPageProxy(PageClient*, PassRefPtr<WebProcessProxy>, WebPageGroup*, uint64_t pageID);
1061
1062     virtual Type type() const { return APIType; }
1063
1064     // WebPopupMenuProxy::Client
1065     virtual void valueChangedForPopupMenu(WebPopupMenuProxy*, int32_t newSelectedIndex);
1066     virtual void setTextFromItemForPopupMenu(WebPopupMenuProxy*, int32_t index);
1067 #if PLATFORM(GTK)
1068     virtual void failedToShowPopupMenu();
1069 #endif
1070 #if PLATFORM(QT)
1071     virtual void changeSelectedIndex(int32_t newSelectedIndex);
1072     virtual void closePopupMenu();
1073 #endif
1074
1075     // Implemented in generated WebPageProxyMessageReceiver.cpp
1076     void didReceiveWebPageProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
1077     void didReceiveSyncWebPageProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, OwnPtr<CoreIPC::ArgumentEncoder>&);
1078
1079     void didCreateMainFrame(uint64_t frameID);
1080     void didCreateSubframe(uint64_t frameID, uint64_t parentFrameID);
1081     void didSaveFrameToPageCache(uint64_t frameID);
1082     void didRestoreFrameFromPageCache(uint64_t frameID, uint64_t parentFrameID);
1083
1084     void didStartProvisionalLoadForFrame(uint64_t frameID, const String& url, const String& unreachableURL, CoreIPC::ArgumentDecoder*);
1085     void didReceiveServerRedirectForProvisionalLoadForFrame(uint64_t frameID, const String&, CoreIPC::ArgumentDecoder*);
1086     void didFailProvisionalLoadForFrame(uint64_t frameID, const WebCore::ResourceError&, CoreIPC::ArgumentDecoder*);
1087     void didCommitLoadForFrame(uint64_t frameID, const String& mimeType, bool frameHasCustomRepresentation, const PlatformCertificateInfo&, CoreIPC::ArgumentDecoder*);
1088     void didFinishDocumentLoadForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder*);
1089     void didFinishLoadForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder*);
1090     void didFailLoadForFrame(uint64_t frameID, const WebCore::ResourceError&, CoreIPC::ArgumentDecoder*);
1091     void didSameDocumentNavigationForFrame(uint64_t frameID, uint32_t sameDocumentNavigationType, const String&, CoreIPC::ArgumentDecoder*);
1092     void didReceiveTitleForFrame(uint64_t frameID, const String&, CoreIPC::ArgumentDecoder*);
1093     void didFirstLayoutForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder*);
1094     void didFirstVisuallyNonEmptyLayoutForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder*);
1095     void didNewFirstVisuallyNonEmptyLayout(CoreIPC::ArgumentDecoder*);
1096     void didRemoveFrameFromHierarchy(uint64_t frameID, CoreIPC::ArgumentDecoder*);
1097     void didDisplayInsecureContentForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder*);
1098     void didRunInsecureContentForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder*);
1099     void didDetectXSSForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder*);
1100     void frameDidBecomeFrameSet(uint64_t frameID, bool);
1101     void didStartProgress();
1102     void didChangeProgress(double);
1103     void didFinishProgress();
1104
1105 #if ENABLE(TIZEN_PLUGIN_CUSTOM_REQUEST)
1106     void processPluginCustomRequest(const String& request, const String& msg);
1107 #endif
1108
1109 #if ENABLE(WEB_INTENTS)
1110     void didReceiveIntentForFrame(uint64_t frameID, const IntentData&, CoreIPC::ArgumentDecoder*);
1111 #endif
1112 #if ENABLE(WEB_INTENTS_TAG)
1113     void registerIntentServiceForFrame(uint64_t frameID, const IntentServiceInfo&, CoreIPC::ArgumentDecoder*);
1114 #endif
1115
1116 #if ENABLE(TIZEN_DOWNLOAD_ATTRIBUTE)
1117     // Called by the web process through a message when the download need to be initiated from the web process.
1118     void startDownload(const WebCore::ResourceRequest&, const String& suggestedName = String());
1119 #endif
1120
1121      void decidePolicyForNavigationAction(uint64_t frameID, uint32_t navigationType, uint32_t modifiers, int32_t mouseButton, const WebCore::ResourceRequest&, uint64_t listenerID, CoreIPC::ArgumentDecoder*, bool& receivedPolicyAction, uint64_t& policyAction, uint64_t& downloadID);
1122     void decidePolicyForNewWindowAction(uint64_t frameID, uint32_t navigationType, uint32_t modifiers, int32_t mouseButton, const WebCore::ResourceRequest&, const String& frameName, uint64_t listenerID, CoreIPC::ArgumentDecoder*);
1123     void decidePolicyForResponse(uint64_t frameID, const WebCore::ResourceResponse&, const WebCore::ResourceRequest&, uint64_t listenerID, CoreIPC::ArgumentDecoder* arguments, bool& receivedPolicyAction, uint64_t& policyAction, uint64_t& downloadID);
1124     void unableToImplementPolicy(uint64_t frameID, const WebCore::ResourceError&, CoreIPC::ArgumentDecoder* arguments);
1125
1126 #if ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
1127     void willSubmitForm(uint64_t frameID, uint64_t sourceFrameID, const StringPairVector& textFieldValues, bool containsPasswordData, uint64_t listenerID, CoreIPC::ArgumentDecoder*);
1128 #else
1129     void willSubmitForm(uint64_t frameID, uint64_t sourceFrameID, const StringPairVector& textFieldValues, uint64_t listenerID, CoreIPC::ArgumentDecoder*);
1130 #endif
1131
1132     // Resource load client
1133     void didInitiateLoadForResource(uint64_t frameID, uint64_t resourceIdentifier, const WebCore::ResourceRequest&, bool pageIsProvisionallyLoading);
1134     void didSendRequestForResource(uint64_t frameID, uint64_t resourceIdentifier, const WebCore::ResourceRequest&, const WebCore::ResourceResponse& redirectResponse);
1135     void didReceiveResponseForResource(uint64_t frameID, uint64_t resourceIdentifier, const WebCore::ResourceResponse&);
1136     void didReceiveContentLengthForResource(uint64_t frameID, uint64_t resourceIdentifier, uint64_t contentLength);
1137     void didFinishLoadForResource(uint64_t frameID, uint64_t resourceIdentifier);
1138     void didFailLoadForResource(uint64_t frameID, uint64_t resourceIdentifier, const WebCore::ResourceError&);
1139
1140     // UI client
1141     void createNewPage(const WebCore::ResourceRequest&, const WebCore::WindowFeatures&, uint32_t modifiers, int32_t mouseButton, uint64_t& newPageID, WebPageCreationParameters&);
1142     void showPage();
1143     void closePage(bool stopResponsivenessTimer);
1144 #if OS(TIZEN)
1145     void runJavaScriptAlert(uint64_t frameID, const String&, PassRefPtr<Messages::WebPageProxy::RunJavaScriptAlert::DelayedReply>);
1146     void runJavaScriptConfirm(uint64_t frameID, const String&, PassRefPtr<Messages::WebPageProxy::RunJavaScriptConfirm::DelayedReply>);
1147     void runJavaScriptPrompt(uint64_t frameID, const String&, const String&, PassRefPtr<Messages::WebPageProxy::RunJavaScriptPrompt::DelayedReply>);
1148 #else
1149     void runJavaScriptAlert(uint64_t frameID, const String&);
1150     void runJavaScriptConfirm(uint64_t frameID, const String&, bool& result);
1151     void runJavaScriptPrompt(uint64_t frameID, const String&, const String&, String& result);
1152 #endif
1153     void shouldInterruptJavaScript(bool& result);
1154     void setStatusText(const String&);
1155     void mouseDidMoveOverElement(const WebHitTestResult::Data& hitTestResultData, uint32_t modifiers, CoreIPC::ArgumentDecoder*);
1156     void unavailablePluginButtonClicked(uint32_t opaquePluginUnavailabilityReason, const String& mimeType, const String& url, const String& pluginsPageURL);
1157     void setToolbarsAreVisible(bool toolbarsAreVisible);
1158     void getToolbarsAreVisible(bool& toolbarsAreVisible);
1159     void setMenuBarIsVisible(bool menuBarIsVisible);
1160     void getMenuBarIsVisible(bool& menuBarIsVisible);
1161     void setStatusBarIsVisible(bool statusBarIsVisible);
1162     void getStatusBarIsVisible(bool& statusBarIsVisible);
1163     void setIsResizable(bool isResizable);
1164     void getIsResizable(bool& isResizable);
1165     void setWindowFrame(const WebCore::FloatRect&);
1166     void getWindowFrame(WebCore::FloatRect&);
1167     void screenToWindow(const WebCore::IntPoint& screenPoint, WebCore::IntPoint& windowPoint);
1168     void windowToScreen(const WebCore::IntRect& viewRect, WebCore::IntRect& result);
1169 #if ENABLE(TIZEN_SUPPORT_BEFORE_UNLOAD_CONFIRM_PANEL)
1170     void runBeforeUnloadConfirmPanel(const String& message, uint64_t frameID, PassRefPtr<Messages::WebPageProxy::RunBeforeUnloadConfirmPanel::DelayedReply>);
1171 #else
1172     void runBeforeUnloadConfirmPanel(const String& message, uint64_t frameID, bool& shouldClose);
1173 #endif
1174     void didChangeViewportProperties(const WebCore::ViewportAttributes&);
1175     void pageDidScroll();
1176     void runOpenPanel(uint64_t frameID, const WebCore::FileChooserSettings&);
1177     void printFrame(uint64_t frameID);
1178 #if ENABLE(TIZEN_SQL_DATABASE)
1179     void exceededDatabaseQuota(uint64_t frameID, const String& originIdentifier, const String& displayName, uint64_t expectedUsage, PassRefPtr<Messages::WebPageProxy::ExceededDatabaseQuota::DelayedReply>);
1180 #else
1181     void exceededDatabaseQuota(uint64_t frameID, const String& originIdentifier, const String& databaseName, const String& displayName, uint64_t currentQuota, uint64_t currentOriginUsage, uint64_t currentDatabaseUsage, uint64_t expectedUsage, uint64_t& newQuota);
1182 #endif
1183 #if ENABLE(TIZEN_APPLICATION_CACHE)
1184     void requestApplicationCachePermission(uint64_t frameID, const String& originIdentifier, PassRefPtr<Messages::WebPageProxy::RequestApplicationCachePermission::DelayedReply>);
1185 #endif
1186     void requestGeolocationPermissionForFrame(uint64_t geolocationID, uint64_t frameID, String originIdentifier);
1187     void runModal();
1188     void notifyScrollerThumbIsVisibleInRect(const WebCore::IntRect&);
1189     void recommendedScrollbarStyleDidChange(int32_t newStyle);
1190     void didChangeScrollbarsForMainFrame(bool hasHorizontalScrollbar, bool hasVerticalScrollbar);
1191     void didChangeScrollOffsetPinningForMainFrame(bool pinnedToLeftSide, bool pinnedToRightSide);
1192 #if PLATFORM(EFL)
1193     void didChangeScrollPositionForMainFrame(const WebCore::IntPoint&);
1194 #endif
1195     void didChangePageCount(unsigned);
1196     void didFailToInitializePlugin(const String& mimeType);
1197     void didBlockInsecurePluginVersion(const String& mimeType, const String& urlString);
1198     void setCanShortCircuitHorizontalWheelEvents(bool canShortCircuitHorizontalWheelEvents) { m_canShortCircuitHorizontalWheelEvents = canShortCircuitHorizontalWheelEvents; }
1199
1200     void reattachToWebProcess();
1201     void reattachToWebProcessWithItem(WebBackForwardListItem*);
1202
1203     void requestNotificationPermission(uint64_t notificationID, const String& originString);
1204
1205     void showNotification(const String& title, const String& body, const String& iconURL, const String& tag, const String& originString, uint64_t notificationID);
1206
1207 #if ENABLE(TIZEN_MEDIA_STREAM)
1208     void requestUserMediaPermission(uint64_t userMediaID);
1209 #endif
1210
1211 #if USE(TILED_BACKING_STORE)
1212     void pageDidRequestScroll(const WebCore::IntPoint&);
1213 #endif
1214
1215 #if ENABLE(TIZEN_WEBKIT2_HISTORICAL_RESTORE_VISIBLE_CONTENT_RECT)
1216     void pageDidRequestRestoreVisibleContentRect(const WebCore::IntPoint&, float);
1217 #endif
1218
1219 #if PLATFORM(QT) || OS(TIZEN)
1220     void didChangeContentsSize(const WebCore::IntSize&);
1221     void didFindZoomableArea(const WebCore::IntPoint&, const WebCore::IntRect&);
1222 #endif
1223 #if ENABLE(TOUCH_EVENTS)
1224     void needTouchEvents(bool);
1225 #endif
1226
1227 #if ENABLE(TIZEN_SUPPORT_WEBAPP_META_TAG)
1228     void didGetWebAppCapable(const bool capable, uint64_t callbackID);
1229     void didGetWebAppIconURL(const String& iconURL, uint64_t callbackID);
1230     void didGetWebAppIconURLs(const StringPairVector& iconURLs, uint64_t callbackID);
1231 #endif
1232 #if ENABLE(TIZEN_ICON_DATABASE)
1233     void didReceiveIcon();
1234 #endif
1235
1236 #if ENABLE(INPUT_TYPE_COLOR)
1237     void showColorChooser(const WebCore::Color& initialColor);
1238 #if !ENABLE(TIZEN_INPUT_COLOR_PICKER) // wait for upstream
1239     void setColorChooserColor(const WebCore::Color&);
1240     void endColorChooser();
1241 #endif
1242     void didChooseColor(const WebCore::Color&);
1243     void didEndColorChooser();
1244 #endif
1245
1246     void editorStateChanged(const EditorState&);
1247
1248     // Back/Forward list management
1249     void backForwardAddItem(uint64_t itemID);
1250     void backForwardGoToItem(uint64_t itemID, SandboxExtension::Handle&);
1251     void backForwardItemAtIndex(int32_t index, uint64_t& itemID);
1252     void backForwardBackListCount(int32_t& count);
1253     void backForwardForwardListCount(int32_t& count);
1254     void backForwardClear();
1255
1256     // Undo management
1257     void registerEditCommandForUndo(uint64_t commandID, uint32_t editAction);
1258     void clearAllEditCommands();
1259     void canUndoRedo(uint32_t action, bool& result);
1260     void executeUndoRedo(uint32_t action, bool& result);
1261
1262     // Keyboard handling
1263 #if PLATFORM(MAC)
1264     void interpretQueuedKeyEvent(const EditorState&, bool& handled, Vector<WebCore::KeypressCommand>&);
1265     void executeSavedCommandBySelector(const String& selector, bool& handled);
1266 #endif
1267
1268 #if PLATFORM(GTK)
1269     void getEditorCommandsForKeyEvent(const AtomicString&, Vector<String>&);
1270     void bindAccessibilityTree(const String&);
1271 #endif
1272 #if PLATFORM(EFL)
1273     void getEditorCommandsForKeyEvent(Vector<String>&);
1274 #endif
1275
1276     // Popup Menu.
1277     void showPopupMenu(const WebCore::IntRect& rect, uint64_t textDirection, const Vector<WebPopupItem>& items, int32_t selectedIndex, const PlatformPopupMenuData&);
1278     void hidePopupMenu();
1279 #if PLATFORM(WIN)
1280     void setPopupMenuSelectedIndex(int32_t);
1281 #endif
1282 #if ENABLE(TIZEN_WEBKIT2_POPUP_INTERNAL)
1283     void updatePopupMenu(uint64_t textDirection, const Vector<WebPopupItem>& items, int32_t selectedIndex);
1284 #endif
1285
1286 #if ENABLE(CONTEXT_MENUS)
1287     // Context Menu.
1288     void showContextMenu(const WebCore::IntPoint& menuLocation, const WebHitTestResult::Data&, const Vector<WebContextMenuItemData>&, CoreIPC::ArgumentDecoder*);
1289     void internalShowContextMenu(const WebCore::IntPoint& menuLocation, const WebHitTestResult::Data&, const Vector<WebContextMenuItemData>&, CoreIPC::ArgumentDecoder*);
1290 #endif
1291
1292     // Search popup results
1293     void saveRecentSearches(const String&, const Vector<String>&);
1294     void loadRecentSearches(const String&, Vector<String>&);
1295
1296 #if PLATFORM(MAC)
1297     // Speech.
1298     void getIsSpeaking(bool&);
1299     void speak(const String&);
1300     void stopSpeaking();
1301
1302     // Spotlight.
1303     void searchWithSpotlight(const String&);
1304
1305     // Dictionary.
1306     void didPerformDictionaryLookup(const String&, const DictionaryPopupInfo&);
1307 #endif
1308
1309     // Spelling and grammar.
1310     int64_t spellDocumentTag();
1311 #if USE(UNIFIED_TEXT_CHECKING)
1312     void checkTextOfParagraph(const String& text, uint64_t checkingTypes, Vector<WebCore::TextCheckingResult>& results);
1313 #endif
1314     void checkSpellingOfString(const String& text, int32_t& misspellingLocation, int32_t& misspellingLength);
1315     void checkGrammarOfString(const String& text, Vector<WebCore::GrammarDetail>&, int32_t& badGrammarLocation, int32_t& badGrammarLength);
1316     void spellingUIIsShowing(bool&);
1317     void updateSpellingUIWithMisspelledWord(const String& misspelledWord);
1318     void updateSpellingUIWithGrammarString(const String& badGrammarPhrase, const WebCore::GrammarDetail&);
1319     void getGuessesForWord(const String& word, const String& context, Vector<String>& guesses);
1320 #if PLATFORM(EFL)
1321 #if ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
1322     void textChangeInTextField(const String&, const String&);
1323 #endif
1324 #endif
1325     void learnWord(const String& word);
1326     void ignoreWord(const String& word);
1327
1328     void setFocus(bool focused);
1329     void takeFocus(uint32_t direction);
1330     void setToolTip(const String&);
1331     void setCursor(const WebCore::Cursor&);
1332     void setCursorHiddenUntilMouseMoves(bool);
1333
1334     void didReceiveEvent(uint32_t opaqueType, bool handled);
1335     void stopResponsivenessTimer();
1336
1337     void voidCallback(uint64_t);
1338     void dataCallback(const CoreIPC::DataReference&, uint64_t);
1339     void stringCallback(const String&, uint64_t);
1340     void scriptValueCallback(const CoreIPC::DataReference&, uint64_t);
1341     void computedPagesCallback(const Vector<WebCore::IntRect>&, double totalScaleFactorForPrinting, uint64_t);
1342     void validateCommandCallback(const String&, bool, int, uint64_t);
1343 #if PLATFORM(GTK)
1344     void printFinishedCallback(const WebCore::ResourceError&, uint64_t);
1345 #endif
1346
1347     void focusedFrameChanged(uint64_t frameID);
1348     void frameSetLargestFrameChanged(uint64_t frameID);
1349
1350     void canAuthenticateAgainstProtectionSpaceInFrame(uint64_t frameID, const WebCore::ProtectionSpace&, bool& canAuthenticate);
1351 #if ENABLE(TIZEN_ON_AUTHENTICATION_REQUESTED)
1352     void didReceiveAuthenticationChallenge(uint64_t frameID, const WebCore::AuthenticationChallenge&, uint64_t challengeID, PassRefPtr<Messages::WebPageProxy::DidReceiveAuthenticationChallenge::DelayedReply>);
1353 #else
1354     void didReceiveAuthenticationChallenge(uint64_t frameID, const WebCore::AuthenticationChallenge&, uint64_t challengeID);
1355 #endif
1356
1357     void didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference&);
1358
1359 #if PLATFORM(MAC)
1360     void pluginFocusOrWindowFocusChanged(uint64_t pluginComplexTextInputIdentifier, bool pluginHasFocusAndWindowHasFocus);
1361     void setPluginComplexTextInputState(uint64_t pluginComplexTextInputIdentifier, uint64_t complexTextInputState);
1362 #endif
1363
1364     void clearPendingAPIRequestURL() { m_pendingAPIRequestURL = String(); }
1365     void setPendingAPIRequestURL(const String& pendingAPIRequestURL) { m_pendingAPIRequestURL = pendingAPIRequestURL; }
1366
1367     bool maybeInitializeSandboxExtensionHandle(const WebCore::KURL&, SandboxExtension::Handle&);
1368
1369 #if PLATFORM(MAC)
1370     void substitutionsPanelIsShowing(bool&);
1371 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
1372     void showCorrectionPanel(int32_t panelType, const WebCore::FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings);
1373     void dismissCorrectionPanel(int32_t reason);
1374     void dismissCorrectionPanelSoon(int32_t reason, String& result);
1375     void recordAutocorrectionResponse(int32_t responseType, const String& replacedString, const String& replacementString);
1376 #endif // __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
1377
1378 #if USE(DICTATION_ALTERNATIVES)
1379     void showDictationAlternativeUI(const WebCore::FloatRect& boundingBoxOfDictatedText, uint64_t dictationContext);
1380     void dismissDictationAlternativeUI();
1381     void removeDictationAlternatives(uint64_t dictationContext);
1382     void dictationAlternatives(uint64_t dictationContext, Vector<String>& result);
1383 #endif
1384 #endif // PLATFORM(MAC)
1385
1386 #if USE(SOUP)
1387     void didReceiveURIRequest(String uriString, uint64_t requestID);
1388 #endif
1389
1390     void clearLoadDependentCallbacks();
1391
1392     void performDragControllerAction(DragControllerAction, WebCore::DragData*, const String& dragStorageName, const SandboxExtension::Handle&, const SandboxExtension::HandleArray&);
1393
1394     void updateBackingStoreDiscardableState();
1395
1396 #if PLATFORM(WIN)
1397     void scheduleChildWindowGeometryUpdate(const WindowGeometry&);
1398 #endif
1399
1400     void setRenderTreeSize(uint64_t treeSize) { m_renderTreeSize = treeSize; }
1401
1402 #if PLUGIN_ARCHITECTURE(X11)
1403     void createPluginContainer(uint64_t& windowID);
1404     void windowedPluginGeometryDidChange(const WebCore::IntRect& frameRect, const WebCore::IntRect& clipRect, uint64_t windowID);
1405 #endif
1406
1407     void processNextQueuedWheelEvent();
1408     void sendWheelEvent(const WebWheelEvent&);
1409
1410 #if ENABLE(TIZEN_CERTIFICATE_HANDLING)
1411     void decidePolicyForCertificateError(const String& url, const String& certificate, int error, PassRefPtr<Messages::WebPageProxy::DecidePolicyForCertificateError::DelayedReply>);
1412 #endif
1413
1414 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
1415     bool isWaitingForJavaScriptPopupReply();
1416 #endif
1417
1418 #if ENABLE(TIZEN_LINK_MAGNIFIER)
1419     void didGetLinkMagnifierRect(const WebCore::IntPoint&, const WebCore::IntRect&);
1420 #endif
1421
1422 #if ENABLE(TIZEN_INDEXED_DATABASE)
1423     void exceededIndexedDatabaseQuota(uint64_t frameID, const String& originIdentifier, int64_t currentUsage, PassRefPtr<Messages::WebPageProxy::ExceededIndexedDatabaseQuota::DelayedReply> reply);
1424 #endif
1425
1426 #if ENABLE(TIZEN_FILE_SYSTEM)
1427     void exceededLocalFileSystemQuota(uint64_t frameID, const String& originIdentifier, int64_t currentUsage, PassRefPtr<Messages::WebPageProxy::ExceededLocalFileSystemQuota::DelayedReply> reply);
1428 #endif
1429
1430 #if ENABLE(TIZEN_WEBKIT2_NOTIFY_SUSPEND_BY_REMOTE_WEB_INSPECTOR)
1431     void setContentSuspendedByInspector(bool);
1432 #endif
1433
1434     PageClient* m_pageClient;
1435     WebLoaderClient m_loaderClient;
1436     WebPolicyClient m_policyClient;
1437     WebFormClient m_formClient;
1438     WebResourceLoadClient m_resourceLoadClient;
1439     WebUIClient m_uiClient;
1440     WebFindClient m_findClient;
1441     WebFindMatchesClient m_findMatchesClient;
1442 #if ENABLE(CONTEXT_MENUS)
1443     WebPageContextMenuClient m_contextMenuClient;
1444 #endif
1445 #if OS(TIZEN)
1446     WebTizenClient m_tizenClient;
1447 #endif
1448
1449     OwnPtr<DrawingAreaProxy> m_drawingArea;
1450     RefPtr<WebProcessProxy> m_process;
1451     RefPtr<WebPageGroup> m_pageGroup;
1452     RefPtr<WebFrameProxy> m_mainFrame;
1453     RefPtr<WebFrameProxy> m_focusedFrame;
1454     RefPtr<WebFrameProxy> m_frameSetLargestFrame;
1455
1456     String m_userAgent;
1457     String m_applicationNameForUserAgent;
1458     String m_customUserAgent;
1459     String m_customTextEncodingName;
1460
1461 #if ENABLE(INSPECTOR)
1462     RefPtr<WebInspectorProxy> m_inspector;
1463 #endif
1464
1465 #if ENABLE(FULLSCREEN_API)
1466     RefPtr<WebFullScreenManagerProxy> m_fullScreenManager;
1467 #endif
1468
1469 #if ENABLE(TIZEN_SUPPORT_WEBAPP_META_TAG)
1470     HashMap<uint64_t, RefPtr<BooleanCallback> > m_booleanCallbacks;
1471     HashMap<uint64_t, RefPtr<DictionaryCallback> > m_dictionaryCallbacks;
1472 #endif
1473     HashMap<uint64_t, RefPtr<VoidCallback> > m_voidCallbacks;
1474     HashMap<uint64_t, RefPtr<DataCallback> > m_dataCallbacks;
1475     HashMap<uint64_t, RefPtr<StringCallback> > m_stringCallbacks;
1476     HashSet<uint64_t> m_loadDependentStringCallbackIDs;
1477     HashMap<uint64_t, RefPtr<ScriptValueCallback> > m_scriptValueCallbacks;
1478     HashMap<uint64_t, RefPtr<ComputedPagesCallback> > m_computedPagesCallbacks;
1479     HashMap<uint64_t, RefPtr<ValidateCommandCallback> > m_validateCommandCallbacks;
1480 #if PLATFORM(GTK)
1481     HashMap<uint64_t, RefPtr<PrintFinishedCallback> > m_printFinishedCallbacks;
1482 #endif
1483 #if ENABLE(TIZEN_WEB_STORAGE)
1484     HashMap<uint64_t, RefPtr<WebStorageQuotaCallback> > m_quotaCallbacks;
1485 #endif
1486
1487     HashSet<WebEditCommandProxy*> m_editCommandSet;
1488
1489 #if PLATFORM(MAC)
1490     HashSet<String> m_knownKeypressCommandNames;
1491 #endif
1492
1493     RefPtr<WebPopupMenuProxy> m_activePopupMenu;
1494     RefPtr<WebContextMenuProxy> m_activeContextMenu;
1495     WebHitTestResult::Data m_activeContextMenuHitTestResultData;
1496     RefPtr<WebOpenPanelResultListenerProxy> m_openPanelResultListener;
1497     GeolocationPermissionRequestManagerProxy m_geolocationPermissionRequestManager;
1498     NotificationPermissionRequestManagerProxy m_notificationPermissionRequestManager;
1499 #if ENABLE(TIZEN_MEDIA_STREAM)
1500     UserMediaPermissionRequestManagerProxy m_userMediaPermissionRequestManager;
1501 #endif
1502     double m_estimatedProgress;
1503
1504     // Whether the web page is contained in a top-level window.
1505     bool m_isInWindow;
1506
1507     // Whether the page is visible; if the backing view is visible and inserted into a window.
1508     bool m_isVisible;
1509
1510     bool m_canGoBack;
1511     bool m_canGoForward;
1512     RefPtr<WebBackForwardList> m_backForwardList;
1513     
1514     bool m_maintainsInactiveSelection;
1515
1516     String m_toolTip;
1517
1518     String m_urlAtProcessExit;
1519     WebFrameProxy::LoadState m_loadStateAtProcessExit;
1520
1521     EditorState m_editorState;
1522
1523     double m_textZoomFactor;
1524     double m_pageZoomFactor;
1525     double m_pageScaleFactor;
1526     float m_intrinsicDeviceScaleFactor;
1527     float m_customDeviceScaleFactor;
1528
1529     LayerHostingMode m_layerHostingMode;
1530
1531     bool m_drawsBackground;
1532     bool m_drawsTransparentBackground;
1533
1534     bool m_areMemoryCacheClientCallsEnabled;
1535
1536     bool m_useFixedLayout;
1537     WebCore::IntSize m_fixedLayoutSize;
1538
1539     WebCore::Page::Pagination::Mode m_paginationMode;
1540     bool m_paginationBehavesLikeColumns;
1541     double m_pageLength;
1542     double m_gapBetweenPages;
1543
1544     // If the process backing the web page is alive and kicking.
1545     bool m_isValid;
1546
1547     // Whether WebPageProxy::close() has been called on this page.
1548     bool m_isClosed;
1549
1550     // Whether it can run modal child web pages.
1551     bool m_canRunModal;
1552
1553     bool m_isInPrintingMode;
1554     bool m_isPerformingDOMPrintOperation;
1555
1556     bool m_inDecidePolicyForResponse;
1557     bool m_syncMimeTypePolicyActionIsValid;
1558     WebCore::PolicyAction m_syncMimeTypePolicyAction;
1559     uint64_t m_syncMimeTypePolicyDownloadID;
1560
1561     bool m_inDecidePolicyForNavigationAction;
1562     bool m_syncNavigationActionPolicyActionIsValid;
1563     WebCore::PolicyAction m_syncNavigationActionPolicyAction;
1564     uint64_t m_syncNavigationActionPolicyDownloadID;
1565
1566 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
1567 #if ENABLE(GESTURE_EVENTS)
1568     Deque<QueuedUIEvents<WebGestureEvent> > m_gestureEventQueue;
1569 #endif
1570     Deque<QueuedUIEvents<NativeWebKeyboardEvent> > m_keyEventQueue;
1571 #else
1572 #if ENABLE(GESTURE_EVENTS)
1573     Deque<WebGestureEvent> m_gestureEventQueue;
1574 #endif
1575     Deque<NativeWebKeyboardEvent> m_keyEventQueue;
1576 #endif
1577     Deque<NativeWebWheelEvent> m_wheelEventQueue;
1578     Deque<OwnPtr<Vector<NativeWebWheelEvent> > > m_currentlyProcessedWheelEvents;
1579
1580     bool m_processingMouseMoveEvent;
1581     OwnPtr<NativeWebMouseEvent> m_nextMouseMoveEvent;
1582     OwnPtr<NativeWebMouseEvent> m_currentlyProcessedMouseDownEvent;
1583
1584 #if ENABLE(TOUCH_EVENTS)
1585     bool m_needTouchEvents;
1586 #if ENABLE(TIZEN_WEBKIT2_ROTATION_WHILE_JAVASCRIPT_POPUP)
1587     Deque<QueuedUIEvents<NativeWebTouchEvent> > m_touchEventQueue;
1588 #else
1589     Deque<QueuedTouchEvents> m_touchEventQueue;
1590 #endif
1591 #endif
1592 #if ENABLE(INPUT_TYPE_COLOR)
1593     RefPtr<WebColorChooserProxy> m_colorChooser;
1594 #if ENABLE(TIZEN_INPUT_COLOR_PICKER) // wait for upstream
1595     RefPtr<WebColorPickerResultListenerProxy> m_colorPickerResultListener;
1596 #endif
1597 #endif
1598 #if ENABLE(TIZEN_CSS_OVERFLOW_SCROLL_ACCELERATION)
1599     bool m_isLoadingFinished;    //if the page loading is finished, then set to true.
1600     bool m_askOverflow;
1601 #endif
1602
1603     uint64_t m_pageID;
1604
1605     bool m_isPageSuspended;
1606
1607 #if PLATFORM(MAC)
1608     bool m_isSmartInsertDeleteEnabled;
1609 #endif
1610
1611 #if PLATFORM(GTK)
1612     String m_accessibilityPlugID;
1613 #endif
1614
1615     int64_t m_spellDocumentTag;
1616     bool m_hasSpellDocumentTag;
1617     unsigned m_pendingLearnOrIgnoreWordMessageCount;
1618
1619     bool m_mainFrameHasCustomRepresentation;
1620
1621 #if ENABLE(DRAG_SUPPORT)
1622     WebCore::DragSession m_currentDragSession;
1623 #endif
1624
1625 #if ENABLE(TIZEN_WEBKIT2_NOTIFY_SUSPEND_BY_REMOTE_WEB_INSPECTOR)
1626     bool m_contentSuspendedByInspector;
1627 #endif
1628
1629     String m_pendingAPIRequestURL;
1630
1631     bool m_mainFrameHasHorizontalScrollbar;
1632     bool m_mainFrameHasVerticalScrollbar;
1633
1634     // Whether horizontal wheel events can be handled directly for swiping purposes.
1635     bool m_canShortCircuitHorizontalWheelEvents;
1636
1637     bool m_mainFrameIsPinnedToLeftSide;
1638     bool m_mainFrameIsPinnedToRightSide;
1639
1640 #if PLATFORM(EFL)
1641     WebCore::IntPoint m_scrollPosition;
1642     WebCore::IntSize m_contentsSize;
1643 #endif
1644     unsigned m_pageCount;
1645
1646     WebCore::IntRect m_visibleScrollerThumbRect;
1647
1648     uint64_t m_renderTreeSize;
1649
1650     static WKPageDebugPaintFlags s_debugPaintFlags;
1651
1652     bool m_shouldSendEventsSynchronously;
1653
1654     bool m_suppressVisibilityUpdates;
1655
1656     float m_mediaVolume;
1657
1658 #if PLATFORM(QT)
1659     WTF::HashSet<RefPtr<QtRefCountedNetworkRequestData> > m_applicationSchemeRequests;
1660 #endif
1661
1662 #if ENABLE(PAGE_VISIBILITY_API)
1663     WebCore::PageVisibilityState m_visibilityState;
1664 #endif
1665
1666 #if OS(TIZEN)
1667     RefPtr<Messages::WebPageProxy::RunJavaScriptAlert::DelayedReply> m_alertReply;
1668     RefPtr<Messages::WebPageProxy::RunJavaScriptConfirm::DelayedReply> m_confirmReply;
1669     RefPtr<Messages::WebPageProxy::RunJavaScriptPrompt::DelayedReply> m_promptReply;
1670 #if ENABLE(TIZEN_SUPPORT_BEFORE_UNLOAD_CONFIRM_PANEL)
1671     RefPtr<Messages::WebPageProxy::RunBeforeUnloadConfirmPanel::DelayedReply> m_beforeUnloadConfirmPanelReply;
1672 #endif
1673 #if ENABLE(TIZEN_APPLICATION_CACHE)
1674     RefPtr<Messages::WebPageProxy::RequestApplicationCachePermission::DelayedReply> m_applicationCacheReply;
1675 #endif
1676 #if ENABLE(TIZEN_SQL_DATABASE)
1677     RefPtr<Messages::WebPageProxy::ExceededDatabaseQuota::DelayedReply> m_exceededDatabaseQuotaReply;
1678 #endif
1679 #endif
1680
1681 #if ENABLE(TIZEN_ON_AUTHENTICATION_REQUESTED)
1682     RefPtr<Messages::WebPageProxy::DidReceiveAuthenticationChallenge::DelayedReply> m_AuthReply;
1683 #endif
1684
1685 #if ENABLE(TIZEN_CERTIFICATE_HANDLING)
1686     RefPtr<Messages::WebPageProxy::DecidePolicyForCertificateError::DelayedReply> m_allowedReply;
1687 #endif
1688
1689 #if ENABLE(TIZEN_REDUCE_KEY_LAGGING)
1690     Ecore_Timer* m_pageContentResumeTimer;
1691 #endif
1692
1693 #if ENABLE(TIZEN_ISF_PORT)
1694     bool m_didCancelCompositionFromWebProcess;
1695 #endif
1696
1697 #if ENABLE(TIZEN_INDEXED_DATABASE)
1698     RefPtr<Messages::WebPageProxy::ExceededIndexedDatabaseQuota::DelayedReply> m_exceededIndexedDatabaseQuotaReply;
1699 #endif
1700
1701 #if ENABLE(TIZEN_FILE_SYSTEM)
1702     RefPtr<Messages::WebPageProxy::ExceededLocalFileSystemQuota::DelayedReply> m_exceededLocalFileSystemQuotaReply;
1703 #endif
1704 };
1705
1706 } // namespace WebKit
1707
1708 #endif // WebPageProxy_h