[M108 Migration][API] Fix ewk_view_text_selection_text_get API
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / efl_integration / eweb_view.h
1 // Copyright 2014 Samsung Electronics. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef EWEB_VIEW_H
6 #define EWEB_VIEW_H
7
8 #if !defined(EWK_BRINGUP)  // FIXME: m67 bringup
9 // FIXME: appfw/app_service.h is no more in Tizen 2.3, figure out what to
10 // include instead.
11 #include <appcore-agent/service_app.h>
12 #endif
13
14 #include <map>
15 #include <string>
16 #include <Evas.h>
17 #include <locale.h>
18 #include <vector>
19
20 #include "base/callback.h"
21 #include "base/containers/id_map.h"
22 #include "base/synchronization/waitable_event.h"
23 #include "browser/inputpicker/InputPicker.h"
24 #include "browser/selectpicker/popup_picker.h"
25 #include "content/browser/renderer_host/event_with_latency_info.h"
26 #include "content/browser/selection/selection_controller_efl.h"
27 #include "content/public/browser/context_menu_params.h"
28 #include "content/public/browser/navigation_controller.h"
29 #include "content/public/browser/quota_permission_context.h"
30 #include "content/public/browser/web_contents_delegate.h"
31 #include "content/public/browser/web_contents_efl_delegate.h"
32 #include "content/public/common/input_event_ack_state.h"
33 #include "content_browser_client_efl.h"
34 #include "context_menu_controller_efl.h"
35 #include "eweb_context.h"
36 #include "eweb_view_callbacks.h"
37 #include "file_chooser_controller_efl.h"
38 #include "permission_popup_manager.h"
39 #include "popup_controller_efl.h"
40 #include "private/ewk_auth_challenge_private.h"
41 #include "private/ewk_back_forward_list_private.h"
42 #include "private/ewk_history_private.h"
43 #include "private/ewk_hit_test_private.h"
44 #include "private/ewk_settings_private.h"
45 #include "private/ewk_web_application_icon_data_private.h"
46 #include "public/ewk_hit_test_internal.h"
47 #include "public/ewk_touch_internal.h"
48 #include "public/ewk_view_product.h"
49 #include "scroll_detector.h"
50 #include "third_party/blink/public/common/context_menu_data/menu_item_info.h"
51 #include "third_party/blink/public/mojom/choosers/file_chooser.mojom.h"
52 #include "ui/aura/window_tree_host.h"
53 #include "ui/gfx/geometry/point.h"
54 #include "ui/gfx/geometry/size.h"
55 #include "web_contents_delegate_efl.h"
56
57 namespace aura {
58 namespace client {
59 class FocusClient;
60 class WindowParentingClient;
61 }  // namespace client
62 }  // namespace aura
63
64 namespace content {
65 class RenderFrameHost;
66 class RenderViewHost;
67 class RenderWidgetHostViewAura;
68 class WebContentsDelegateEfl;
69 class ContextMenuControllerEfl;
70 class PopupControllerEfl;
71 }
72
73 class ErrorParams;
74 class _Ewk_Policy_Decision;
75 class _Ewk_Hit_Test;
76 class Ewk_Context;
77 class WebViewEvasEventHandler;
78 class _Ewk_Quota_Permission_Request;
79
80 template <typename CallbackPtr, typename CallbackParameter>
81 class WebViewCallback {
82  public:
83   WebViewCallback() { Set(nullptr, nullptr); }
84
85   void Set(CallbackPtr cb, void* data) {
86     callback_ = cb;
87     user_data_ = data;
88   }
89
90   bool IsCallbackSet() const { return callback_; }
91
92   Eina_Bool Run(Evas_Object* webview,
93                 CallbackParameter param,
94                 Eina_Bool* callback_result) {
95     CHECK(callback_result);
96     if (IsCallbackSet()) {
97       *callback_result = callback_(webview, param, user_data_);
98       return true;
99     }
100     return false;
101   }
102
103   void Run(Evas_Object* webview, CallbackParameter param) {
104     if (IsCallbackSet())
105       callback_(webview, param, user_data_);
106   }
107
108  private:
109   CallbackPtr callback_;
110   void* user_data_;
111 };
112
113 class WebApplicationIconUrlGetCallback {
114  public:
115   WebApplicationIconUrlGetCallback(Ewk_Web_App_Icon_URL_Get_Callback func,
116                                    void* user_data)
117       : func_(func), user_data_(user_data) {}
118   void Run(const std::string& url) {
119     if (func_) {
120       (func_)(url.c_str(), user_data_);
121     }
122   }
123
124  private:
125   Ewk_Web_App_Icon_URL_Get_Callback func_;
126   void* user_data_;
127 };
128
129 class WebApplicationIconUrlsGetCallback {
130  public:
131   WebApplicationIconUrlsGetCallback(Ewk_Web_App_Icon_URLs_Get_Callback func,
132                                     void* user_data)
133       : func_(func), user_data_(user_data) {}
134   void Run(const std::map<std::string, std::string>& urls) {
135     if (func_) {
136       Eina_List* list = NULL;
137       for (std::map<std::string, std::string>::const_iterator it = urls.begin();
138            it != urls.end(); ++it) {
139         _Ewk_Web_App_Icon_Data* data =
140             ewkWebAppIconDataCreate(it->first, it->second);
141         list = eina_list_append(list, data);
142       }
143       (func_)(list, user_data_);
144     }
145   }
146
147  private:
148   Ewk_Web_App_Icon_URLs_Get_Callback func_;
149   void* user_data_;
150 };
151
152 class WebApplicationCapableGetCallback {
153  public:
154   WebApplicationCapableGetCallback(Ewk_Web_App_Capable_Get_Callback func,
155                                    void* user_data)
156       : func_(func), user_data_(user_data) {}
157   void Run(bool capable) {
158     if (func_) {
159       (func_)(capable ? EINA_TRUE : EINA_FALSE, user_data_);
160     }
161   }
162
163  private:
164   Ewk_Web_App_Capable_Get_Callback func_;
165   void* user_data_;
166 };
167
168 class WebViewAsyncRequestHitTestDataCallback;
169 class JavaScriptDialogManagerEfl;
170 class PermissionPopupManager;
171
172 class EWebView {
173  public:
174   static EWebView* FromEvasObject(Evas_Object* eo);
175
176   EWebView(Ewk_Context*, Evas_Object* smart_object);
177   ~EWebView();
178
179   // initialize data members and activate event handlers.
180   // call this once after created and before use
181   void Initialize();
182
183   bool CreateNewWindow(
184       content::WebContentsEflDelegate::WebContentsCreateCallback);
185   static Evas_Object* GetHostWindowDelegate(const content::WebContents*);
186
187   content::RenderWidgetHostViewAura* rwhva() const;
188   Ewk_Context* context() const { return context_.get(); }
189   Evas_Object* evas_object() const { return evas_object_; }
190   Evas_Object* native_view() const { return native_view_; }
191   Evas* GetEvas() const { return evas_object_evas_get(evas_object_); }
192   PermissionPopupManager* GetPermissionPopupManager() const {
193     return permission_popup_manager_.get();
194   }
195
196   content::WebContents& web_contents() const { return *web_contents_.get(); }
197
198   template <EWebViewCallbacks::CallbackType callbackType>
199   EWebViewCallbacks::CallBack<callbackType> SmartCallback() const {
200     return EWebViewCallbacks::CallBack<callbackType>(evas_object_);
201   }
202
203   void set_magnifier(bool status);
204
205   // ewk_view api
206   void SetURL(const GURL& url);
207   const GURL& GetURL() const;
208   const GURL& GetOriginalURL() const;
209   void Reload();
210   void ReloadBypassingCache();
211   Eina_Bool CanGoBack();
212   Eina_Bool CanGoForward();
213   Eina_Bool HasFocus() const;
214   void SetFocus(Eina_Bool focus);
215   Eina_Bool GoBack();
216   Eina_Bool GoForward();
217   void Suspend();
218   void Resume();
219   void Stop();
220   double GetTextZoomFactor() const;
221   void SetTextZoomFactor(double text_zoom_factor);
222   double GetPageZoomFactor() const;
223   void SetPageZoomFactor(double page_zoom_factor);
224   void ExecuteEditCommand(const char* command, const char* value);
225   void SetOrientation(int orientation);
226   int GetOrientation();
227   bool TouchEventsEnabled() const;
228   void SetTouchEventsEnabled(bool enabled);
229   bool MouseEventsEnabled() const;
230   void SetMouseEventsEnabled(bool enabled);
231   void HandleTouchEvents(Ewk_Touch_Event_Type type,
232                          const Eina_List* points,
233                          const Evas_Modifier* modifiers);
234   void Show();
235   void Hide();
236   bool ExecuteJavaScript(const char* script,
237                          Ewk_View_Script_Execute_Callback callback,
238                          void* userdata);
239   bool SetUserAgent(const char* userAgent);
240   bool SetUserAgentAppName(const char* application_name);
241   bool SetPrivateBrowsing(bool incognito);
242   bool GetPrivateBrowsing() const;
243   const char* GetUserAgent() const;
244   const char* GetUserAgentAppName() const;
245   const char* CacheSelectedText();
246   Ewk_Settings* GetSettings() { return settings_.get(); }
247   _Ewk_Frame* GetMainFrame();
248   void UpdateWebKitPreferences();
249   void LoadHTMLString(const char* html,
250                       const char* base_uri,
251                       const char* unreachable_uri);
252   void LoadPlainTextString(const char* plain_text);
253   void LoadData(const char* data,
254                 size_t size,
255                 const char* mime_type,
256                 const char* encoding,
257                 const char* base_uri,
258                 const char* unreachable_uri = NULL);
259
260   void InvokeLoadError(const GURL& url,
261                        int error_code,
262                        const std::string& error_description);
263
264   void SetViewAuthCallback(Ewk_View_Authentication_Callback callback,
265                            void* user_data);
266   void InvokeAuthCallback(LoginDelegateEfl* login_delegate,
267                           const GURL& url,
268                           const std::string& realm);
269   void Find(const char* text, Ewk_Find_Options);
270   void InvokeAuthCallbackOnUI(_Ewk_Auth_Challenge* auth_challenge);
271   void SetContentSecurityPolicy(const char* policy, Ewk_CSP_Header_Type type);
272   void ShowPopupMenu(const std::vector<blink::MenuItemInfo>& items,
273                      int selectedIndex,
274                      bool multiple);
275   Eina_Bool HidePopupMenu();
276   void UpdateFormNavigation(int formElementCount,
277                             int currentNodeIndex,
278                             bool prevState,
279                             bool nextState);
280   void FormNavigate(bool direction);
281   bool IsSelectPickerShown() const;
282   void CloseSelectPicker();
283   bool FormIsNavigating() const { return formIsNavigating_; }
284   void SetFormIsNavigating(bool formIsNavigating);
285   Eina_Bool PopupMenuUpdate(Eina_List* items, int selectedIndex);
286   Eina_Bool DidSelectPopupMenuItem(int selectedIndex);
287   Eina_Bool DidMultipleSelectPopupMenuItem(std::vector<int>& selectedIndices);
288   Eina_Bool PopupMenuClose();
289   void HandleLongPressGesture(const content::ContextMenuParams&);
290   void ShowContextMenu(const content::ContextMenuParams&);
291   void CancelContextMenu(int request_id);
292   void SetScale(double scale_factor, int x, int y);
293   bool GetScrollPosition(int* x, int* y) const;
294   void SetScroll(int x, int y);
295   void UrlRequestSet(const char* url,
296                      content::NavigationController::LoadURLType loadtype,
297                      Eina_Hash* headers,
298                      const char* body);
299
300   content::SelectionControllerEfl* GetSelectionController() const;
301   content::PopupControllerEfl* GetPopupController() const {
302     return popup_controller_.get();
303   }
304   ScrollDetector* GetScrollDetector() const { return scroll_detector_.get(); }
305   void MoveCaret(const gfx::Point& point);
306   void QuerySelectionStyle();
307   void OnQuerySelectionStyleReply(const SelectionStylePrams& params);
308   void SelectLinkText(const gfx::Point& touch_point);
309   bool GetSelectionRange(Eina_Rectangle* left_rect, Eina_Rectangle* right_rect);
310   Eina_Bool ClearSelection();
311
312   // Callback OnCopyFromBackingStore will be called once we get the snapshot
313   // from render
314   void OnCopyFromBackingStore(bool success, const SkBitmap& bitmap);
315
316   void RenderViewCreated(content::RenderViewHost* render_view_host);
317
318   /**
319    * Creates a snapshot of given rectangle from EWebView
320    *
321    * @param rect rectangle of EWebView which will be taken into snapshot
322    *
323    * @return created snapshot or NULL if error occured.
324    * @note ownership of snapshot is passed to caller
325   */
326   Evas_Object* GetSnapshot(Eina_Rectangle rect);
327
328   bool GetSnapshotAsync(Eina_Rectangle rect,
329                         Ewk_Web_App_Screenshot_Captured_Callback callback,
330                         void* user_data);
331   void InvokePolicyResponseCallback(_Ewk_Policy_Decision* policy_decision);
332   void InvokePolicyNavigationCallback(content::RenderViewHost* rvh,
333                                       NavigationPolicyParams params,
334                                       bool* handled);
335   void UseSettingsFont();
336
337   _Ewk_Hit_Test* RequestHitTestDataAt(int x, int y, Ewk_Hit_Test_Mode mode);
338   Eina_Bool AsyncRequestHitTestDataAt(int x,
339                                       int y,
340                                       Ewk_Hit_Test_Mode mode,
341                                       Ewk_View_Hit_Test_Request_Callback,
342                                       void* user_data);
343   _Ewk_Hit_Test* RequestHitTestDataAtBlinkCoords(int x,
344                                                  int y,
345                                                  Ewk_Hit_Test_Mode mode);
346   Eina_Bool AsyncRequestHitTestDataAtBlinkCords(
347       int x,
348       int y,
349       Ewk_Hit_Test_Mode mode,
350       Ewk_View_Hit_Test_Request_Callback,
351       void* user_data);
352   void DispatchAsyncHitTestData(const Hit_Test_Params& params,
353                                 int64_t request_id);
354   void UpdateHitTestData(const Hit_Test_Params& params);
355
356   int current_find_request_id() const { return current_find_request_id_; }
357   bool PlainTextGet(Ewk_View_Plain_Text_Get_Callback callback, void* user_data);
358   void InvokePlainTextGetCallback(const std::string& content_text,
359                                   int plain_text_get_callback_id);
360   int SetEwkViewPlainTextGetCallback(Ewk_View_Plain_Text_Get_Callback callback,
361                                      void* user_data);
362   void SetViewGeolocationPermissionCallback(
363       Ewk_View_Geolocation_Permission_Callback callback,
364       void* user_data);
365   bool InvokeViewGeolocationPermissionCallback(
366       _Ewk_Geolocation_Permission_Request*
367           geolocation_permission_request_context,
368       Eina_Bool* result);
369   void SetViewUserMediaPermissionCallback(
370       Ewk_View_User_Media_Permission_Callback callback,
371       void* user_data);
372   bool InvokeViewUserMediaPermissionCallback(
373       _Ewk_User_Media_Permission_Request* user_media_permission_request_context,
374       Eina_Bool* result);
375   void SetViewUnfocusAllowCallback(Ewk_View_Unfocus_Allow_Callback callback,
376                                    void* user_data);
377   bool InvokeViewUnfocusAllowCallback(Ewk_Unfocus_Direction direction,
378                                       Eina_Bool* result);
379   void DidChangeContentsSize(int width, int height);
380   const Eina_Rectangle GetContentsSize() const;
381   void GetScrollSize(int* w, int* h);
382   void StopFinding();
383   void SetProgressValue(double progress);
384   double GetProgressValue();
385   const char* GetTitle();
386   bool SaveAsPdf(int width, int height, const std::string& file_name);
387   void BackForwardListClear();
388   _Ewk_Back_Forward_List* GetBackForwardList() const;
389   void InvokeBackForwardListChangedCallback();
390   _Ewk_History* GetBackForwardHistory() const;
391   bool WebAppCapableGet(Ewk_Web_App_Capable_Get_Callback callback,
392                         void* userData);
393   bool WebAppIconUrlGet(Ewk_Web_App_Icon_URL_Get_Callback callback,
394                         void* userData);
395   bool WebAppIconUrlsGet(Ewk_Web_App_Icon_URLs_Get_Callback callback,
396                          void* userData);
397   void InvokeWebAppCapableGetCallback(bool capable, int callbackId);
398   void InvokeWebAppIconUrlGetCallback(const std::string& iconUrl,
399                                       int callbackId);
400   void InvokeWebAppIconUrlsGetCallback(
401       const std::map<std::string, std::string>& iconUrls,
402       int callbackId);
403   void SetNotificationPermissionCallback(
404       Ewk_View_Notification_Permission_Callback callback,
405       void* user_data);
406   bool IsNotificationPermissionCallbackSet() const;
407   bool InvokeNotificationPermissionCallback(
408       Ewk_Notification_Permission_Request* request);
409
410   bool GetMHTMLData(Ewk_View_MHTML_Data_Get_Callback callback, void* user_data);
411   void OnMHTMLContentGet(const std::string& mhtml_content, int callback_id);
412   bool IsFullscreen();
413   void ExitFullscreen();
414   double GetScale();
415   void DidChangePageScaleFactor(double scale_factor);
416   void SetJavaScriptAlertCallback(Ewk_View_JavaScript_Alert_Callback callback,
417                                   void* user_data);
418   void JavaScriptAlertReply();
419   void SetJavaScriptConfirmCallback(
420       Ewk_View_JavaScript_Confirm_Callback callback,
421       void* user_data);
422   void JavaScriptConfirmReply(bool result);
423   void SetJavaScriptPromptCallback(Ewk_View_JavaScript_Prompt_Callback callback,
424                                    void* user_data);
425   void JavaScriptPromptReply(const char* result);
426   void set_renderer_crashed();
427   void GetPageScaleRange(double* min_scale, double* max_scale);
428   void SetDrawsTransparentBackground(bool enabled);
429   void GetSessionData(const char** data, unsigned* length) const;
430   bool RestoreFromSessionData(const char* data, unsigned length);
431   void ShowFileChooser(content::RenderFrameHost* render_frame_host,
432                        const blink::mojom::FileChooserParams&);
433   void SetBrowserFont();
434   void SetCertificatePem(const std::string& certificate);
435   bool IsDragging() const;
436
437   void RequestColorPicker(int r, int g, int b, int a);
438   void DismissColorPicker();
439   bool SetColorPickerColor(int r, int g, int b, int a);
440   void InputPickerShow(ui::TextInputType input_type, double input_value);
441
442   void ShowContentsDetectedPopup(const char*);
443
444   // Returns TCP port number with Inspector, or 0 if error.
445   int StartInspectorServer(int port = 0);
446   bool StopInspectorServer();
447
448   void LoadNotFoundErrorPage(const std::string& invalidUrl);
449   static std::string GetPlatformLocale();
450   bool GetLinkMagnifierEnabled() const;
451   void SetLinkMagnifierEnabled(bool enabled);
452
453   void SetOverrideEncoding(const std::string& encoding);
454   void SetQuotaPermissionRequestCallback(
455       Ewk_Quota_Permission_Request_Callback callback,
456       void* user_data);
457   void InvokeQuotaPermissionRequest(
458       _Ewk_Quota_Permission_Request* request,
459       content::QuotaPermissionContext::PermissionCallback cb);
460   void QuotaRequestReply(const _Ewk_Quota_Permission_Request* request,
461                          bool allow);
462   void QuotaRequestCancel(const _Ewk_Quota_Permission_Request* request);
463 #if !defined(EWK_BRINGUP)  // FIXME: m67 bringup
464   void SetViewMode(blink::WebViewMode view_mode);
465 #endif
466   gfx::Point GetContextMenuPosition() const;
467
468   content::ContextMenuControllerEfl* GetContextMenuController() {
469     return context_menu_.get();
470   }
471   void ResetContextMenuController();
472
473   /// ---- Event handling
474   bool HandleShow();
475   bool HandleHide();
476   bool HandleMove(int x, int y);
477   bool HandleResize(int width, int height);
478   bool HandleTextSelectionDown(int x, int y);
479   bool HandleTextSelectionUp(int x, int y);
480
481   void HandleRendererProcessCrash();
482   void InvokeWebProcessCrashedCallback();
483
484   void HandleTapGestureForSelection(bool is_content_editable);
485   void HandleZoomGesture(blink::WebGestureEvent& event);
486   void ClosePage();
487
488   void RequestManifest(Ewk_View_Request_Manifest_Callback callback,
489                        void* user_data);
490   void DidRespondRequestManifest(_Ewk_View_Request_Manifest* manifest,
491                                  Ewk_View_Request_Manifest_Callback callback,
492                                  void* user_data);
493
494   void SyncAcceptLanguages(const std::string& accept_languages);
495
496   void OnOverscrolled(const gfx::Vector2dF& accumulated_overscroll,
497                       const gfx::Vector2dF& latest_overscroll_delta);
498
499  private:
500   void InitializeContent();
501   void InitializeWindowTreeHost();
502   void SendDelayedMessages(content::RenderViewHost* render_view_host);
503
504   void EvasToBlinkCords(int x, int y, int* view_x, int* view_y);
505   Eina_Bool AsyncRequestHitTestDataAtBlinkCords(
506       int x,
507       int y,
508       Ewk_Hit_Test_Mode mode,
509       WebViewAsyncRequestHitTestDataCallback* cb);
510 #if !defined(USE_AURA)
511   content::WebContentsViewEfl* GetWebContentsViewEfl() const;
512 #endif
513 #if BUILDFLAG(IS_TIZEN) && !defined(EWK_BRINGUP)
514   static void cameraResultCb(service_h request,
515                              service_h reply,
516                              service_result_e result,
517                              void* data);
518 #endif
519
520 #if BUILDFLAG(IS_TIZEN) && !defined(EWK_BRINGUP)
521   bool LaunchCamera(std::u16string mimetype);
522 #endif
523 #if !defined(USE_AURA)
524   content::RenderWidgetHostViewEfl* rwhv() const;
525 #endif
526   JavaScriptDialogManagerEfl* GetJavaScriptDialogManagerEfl();
527
528   void ReleasePopupMenuList();
529
530   void ShowContextMenuInternal(const content::ContextMenuParams&);
531
532   void UpdateWebkitPreferencesEfl(content::RenderViewHost*);
533
534   void ChangeScroll(int& x, int& y);
535
536   scoped_refptr<WebViewEvasEventHandler> evas_event_handler_;
537   scoped_refptr<Ewk_Context> context_;
538   scoped_refptr<Ewk_Context> old_context_;
539   std::unique_ptr<content::WebContents> web_contents_;
540   std::unique_ptr<content::WebContentsDelegateEfl> web_contents_delegate_;
541   std::string pending_url_request_;
542   std::unique_ptr<Ewk_Settings> settings_;
543   std::unique_ptr<_Ewk_Frame> frame_;
544   std::unique_ptr<_Ewk_Policy_Decision> window_policy_;
545   Evas_Object* evas_object_;
546   Evas_Object* native_view_;
547   bool touch_events_enabled_;
548   bool mouse_events_enabled_;
549   double text_zoom_factor_;
550   mutable std::string user_agent_;
551   mutable std::string user_agent_app_name_;
552   std::unique_ptr<_Ewk_Auth_Challenge> auth_challenge_;
553   std::string selected_text_cached_;
554
555   Eina_List* popupMenuItems_;
556   Popup_Picker* popupPicker_;
557   bool formIsNavigating_;
558   typedef struct {
559     int count;
560     int position;
561     bool prevState;
562     bool nextState;
563   } formNavigation;
564   formNavigation formNavigation_;
565   std::unique_ptr<content::ContextMenuControllerEfl> context_menu_;
566 #if !defined(EWK_BRINGUP)  // FIXME: m71 bringup
567   std::unique_ptr<content::FileChooserControllerEfl> file_chooser_;
568 #endif
569   std::unique_ptr<content::PopupControllerEfl> popup_controller_;
570   std::u16string previous_text_;
571   int current_find_request_id_;
572   static int find_request_id_counter_;
573
574   typedef WebViewCallback<Ewk_View_Plain_Text_Get_Callback, const char*>
575       EwkViewPlainTextGetCallback;
576   base::IDMap<EwkViewPlainTextGetCallback*> plain_text_get_callback_map_;
577
578   typedef WebViewCallback<Ewk_View_MHTML_Data_Get_Callback, const char*>
579       MHTMLCallbackDetails;
580   base::IDMap<MHTMLCallbackDetails*> mhtml_callback_map_;
581
582   gfx::Size contents_size_;
583   double progress_;
584   mutable std::string title_;
585   mutable std::string pem_certificate_;
586   Hit_Test_Params hit_test_params_;
587   base::WaitableEvent hit_test_completion_;
588   double page_scale_factor_;
589   double x_delta_;
590   double y_delta_;
591
592   WebViewCallback<Ewk_View_Geolocation_Permission_Callback,
593                   _Ewk_Geolocation_Permission_Request*>
594       geolocation_permission_cb_;
595   WebViewCallback<Ewk_View_User_Media_Permission_Callback,
596                   _Ewk_User_Media_Permission_Request*>
597       user_media_permission_cb_;
598   WebViewCallback<Ewk_View_Unfocus_Allow_Callback, Ewk_Unfocus_Direction>
599       unfocus_allow_cb_;
600   WebViewCallback<Ewk_View_Notification_Permission_Callback,
601                   Ewk_Notification_Permission_Request*>
602       notification_permission_callback_;
603   WebViewCallback<Ewk_Quota_Permission_Request_Callback,
604                   const _Ewk_Quota_Permission_Request*>
605       quota_request_callback_;
606   WebViewCallback<Ewk_View_Authentication_Callback, _Ewk_Auth_Challenge*>
607       authentication_cb_;
608
609   std::unique_ptr<content::InputPicker> inputPicker_;
610   base::IDMap<WebApplicationIconUrlGetCallback*>
611       web_app_icon_url_get_callback_map_;
612   base::IDMap<WebApplicationIconUrlsGetCallback*>
613       web_app_icon_urls_get_callback_map_;
614   base::IDMap<WebApplicationCapableGetCallback*>
615       web_app_capable_get_callback_map_;
616   std::unique_ptr<PermissionPopupManager> permission_popup_manager_;
617   std::unique_ptr<ScrollDetector> scroll_detector_;
618
619 #if BUILDFLAG(IS_TIZEN)
620   blink::mojom::FileChooserParams::Mode filechooser_mode_;
621 #endif
622   std::map<const _Ewk_Quota_Permission_Request*,
623            content::QuotaPermissionContext::PermissionCallback>
624       quota_permission_request_map_;
625
626   bool is_initialized_;
627
628   std::unique_ptr<_Ewk_Back_Forward_List> back_forward_list_;
629
630   static content::WebContentsEflDelegate::WebContentsCreateCallback
631       create_new_window_web_contents_cb_;
632
633  private:
634   gfx::Vector2d previous_scroll_position_;
635
636   gfx::Point context_menu_position_;
637
638   std::vector<IPC::Message*> delayed_messages_;
639
640   std::map<int64_t, WebViewAsyncRequestHitTestDataCallback*> hit_test_callback_;
641
642   content::ContentBrowserClientEfl::AcceptLangsChangedCallback
643       accept_langs_changed_callback_;
644
645   std::unique_ptr<aura::WindowTreeHost> host_;
646   std::unique_ptr<aura::client::FocusClient> focus_client_;
647   std::unique_ptr<aura::client::WindowParentingClient> window_parenting_client_;
648 };
649
650 const unsigned int g_default_tilt_motion_sensitivity = 3;
651
652 #endif