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