[M120 Migration][VD] Support ewk apis of key event
[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 #include <map>
9 #include <string>
10 #include <Evas.h>
11 #include <locale.h>
12 #include <vector>
13
14 #include "base/containers/id_map.h"
15 #include "base/functional/callback.h"
16 #include "base/synchronization/waitable_event.h"
17 #include "browser/input_picker/input_picker.h"
18 #include "content/browser/select_picker/select_picker_base.h"
19 #include "content/browser/selection/selection_controller_efl.h"
20 #include "content/browser/web_contents/web_contents_view_aura.h"
21 #include "content/browser/web_contents/web_contents_view_aura_helper_efl.h"
22 #include "content/common/input/event_with_latency_info.h"
23 #include "content/public/browser/context_menu_params.h"
24 #include "content/public/browser/navigation_controller.h"
25 #include "content/public/browser/web_contents_delegate.h"
26 #include "content/public/browser/webview_delegate.h"
27 #include "content/public/common/input_event_ack_state.h"
28 #include "content_browser_client_efl.h"
29 #include "context_menu_controller_efl.h"
30 #include "eweb_context.h"
31 #include "eweb_view_callbacks.h"
32 #include "file_chooser_controller_efl.h"
33 #include "permission_popup_manager.h"
34 #include "popup_controller_efl.h"
35 #include "private/ewk_auth_challenge_private.h"
36 #include "private/ewk_back_forward_list_private.h"
37 #include "private/ewk_history_private.h"
38 #include "private/ewk_hit_test_private.h"
39 #include "private/ewk_settings_private.h"
40 #include "private/ewk_web_application_icon_data_private.h"
41 #include "public/ewk_hit_test_internal.h"
42 #include "public/ewk_touch_internal.h"
43 #include "public/ewk_view_product.h"
44 #include "scroll_detector.h"
45 #include "third_party/blink/public/common/context_menu_data/menu_item_info.h"
46 #include "third_party/blink/public/mojom/choosers/file_chooser.mojom.h"
47 #include "third_party/blink/public/mojom/choosers/popup_menu.mojom.h"
48 #include "ui/aura/window_tree_host.h"
49 #include "ui/gfx/geometry/point.h"
50 #include "ui/gfx/geometry/size.h"
51 #include "web_contents_delegate_efl.h"
52 #if defined(TIZEN_PEPPER_EXTENSIONS)
53 #include "ewk_extension_system_delegate.h"
54 #include "public/ewk_value_product.h"
55 #endif
56
57 namespace aura {
58 namespace client {
59 class FocusClient;
60 class WindowParentingClient;
61 }  // namespace client
62 }  // namespace aura
63
64 namespace base {
65 class FilePath;
66 }
67
68 namespace content {
69 class RenderFrameHost;
70 class RenderViewHost;
71 class RenderWidgetHostViewAura;
72 class WebContentsDelegateEfl;
73 class WebContentsViewAura;
74 class ContextMenuControllerEfl;
75 class PopupControllerEfl;
76 class DateTimeChooserEfl;
77 class InputPicker;
78 class GinNativeBridgeDispatcherHost;
79 class NavigationHandle;
80 }
81
82 class ErrorParams;
83 class _Ewk_App_Control;
84 class _Ewk_Policy_Decision;
85 class _Ewk_Hit_Test;
86 class Ewk_Context;
87 class _Ewk_Quota_Permission_Request;
88
89 #if defined(TIZEN_ATK_SUPPORT)
90 class EWebAccessibility;
91 #endif
92
93 template <typename CallbackPtr, typename CallbackParameter>
94 class WebViewCallback {
95  public:
96   WebViewCallback() { Set(nullptr, nullptr); }
97
98   void Set(CallbackPtr cb, void* data) {
99     callback_ = cb;
100     user_data_ = data;
101   }
102
103   bool IsCallbackSet() const { return callback_; }
104
105   Eina_Bool Run(Evas_Object* webview,
106                 CallbackParameter param,
107                 Eina_Bool* callback_result) {
108     CHECK(callback_result);
109     if (IsCallbackSet()) {
110       *callback_result = callback_(webview, param, user_data_);
111       return true;
112     }
113     return false;
114   }
115
116   void Run(Evas_Object* webview, CallbackParameter param) {
117     if (IsCallbackSet())
118       callback_(webview, param, user_data_);
119   }
120
121  private:
122   CallbackPtr callback_;
123   void* user_data_;
124 };
125
126 template <typename CallbackReturnValue,
127           typename CallbackPtr,
128           typename CallbackParameter>
129 class WebViewCallbackWithReturnValue {
130  public:
131   WebViewCallbackWithReturnValue() { Set(nullptr, nullptr); }
132
133   void Set(CallbackPtr cb, void* data) {
134     callback_ = cb;
135     user_data_ = data;
136   }
137
138   /* LCOV_EXCL_START */
139   bool IsCallbackSet() const { return callback_; }
140
141   CallbackReturnValue Run(Evas_Object* webview, CallbackParameter param) {
142     if (IsCallbackSet())
143       return callback_(webview, param, user_data_);
144
145     return {};
146   }
147   /* LCOV_EXCL_STOP */
148
149  private:
150   CallbackPtr callback_;
151   void* user_data_;
152 };
153
154 template <typename CallbackPtr, typename... CallbackParameter>
155 class WebViewErrorPageLoadCallback {
156  public:
157   WebViewErrorPageLoadCallback() { Set(nullptr, nullptr); }
158
159   void Set(CallbackPtr cb, void* data) {
160     callback_ = cb;
161     user_data_ = data;
162   }
163
164   bool IsCallbackSet() const { return callback_; }
165
166   void Run(Evas_Object* webview, CallbackParameter... param) {
167     if (IsCallbackSet())
168       callback_(webview, param..., user_data_);
169   }
170
171  private:
172   CallbackPtr callback_;
173   void* user_data_;
174 };
175
176 template <typename CallbackPtr, typename... CallbackParameter>
177 class WebViewExceededQuotaCallback {
178  public:
179   WebViewExceededQuotaCallback() { Set(nullptr, nullptr); }
180
181   void Set(CallbackPtr cb, void* data) {
182     callback_ = cb;
183     user_data_ = data;
184   }
185
186   bool IsCallbackSet() const { return callback_; }
187
188   /* LCOV_EXCL_START */
189   void Run(Evas_Object* webview, CallbackParameter... param) {
190     if (IsCallbackSet())
191       callback_(webview, param..., user_data_);
192   }
193   /* LCOV_EXCL_STOP */
194
195  private:
196   CallbackPtr callback_;
197   void* user_data_;
198 };
199
200 class BackgroundColorGetCallback {
201  public:
202   BackgroundColorGetCallback(Ewk_View_Background_Color_Get_Callback func,
203                              void* user_data)
204       : func_(func), user_data_(user_data) {}
205
206   void Run(Evas_Object* webview, int r, int g, int b, int a) {
207     if (func_)
208       func_(webview, r, g, b, a, user_data_);
209   }
210
211  private:
212   Ewk_View_Background_Color_Get_Callback func_;
213   void* user_data_;
214 };
215
216 class WebApplicationIconUrlGetCallback {
217  public:
218   WebApplicationIconUrlGetCallback(Ewk_Web_App_Icon_URL_Get_Callback func,
219                                    void* user_data)
220       : func_(func), user_data_(user_data) {}
221   void Run(const std::string& url) {
222     if (func_) {
223       (func_)(url.c_str(), user_data_);
224     }
225   }
226
227  private:
228   Ewk_Web_App_Icon_URL_Get_Callback func_;
229   void* user_data_;
230 };
231
232 class WebApplicationIconUrlsGetCallback {
233  public:
234   WebApplicationIconUrlsGetCallback(Ewk_Web_App_Icon_URLs_Get_Callback func,
235                                     void* user_data)
236       : func_(func), user_data_(user_data) {}
237   void Run(const std::map<std::string, std::string>& urls) {
238     if (func_) {
239       Eina_List* list = NULL;
240       for (std::map<std::string, std::string>::const_iterator it = urls.begin();
241            it != urls.end(); ++it) {
242         _Ewk_Web_App_Icon_Data* data =
243             ewkWebAppIconDataCreate(it->first, it->second);
244         list = eina_list_append(list, data);
245       }
246       (func_)(list, user_data_);
247     }
248   }
249
250  private:
251   Ewk_Web_App_Icon_URLs_Get_Callback func_;
252   void* user_data_;
253 };
254
255 class WebApplicationCapableGetCallback {
256  public:
257   WebApplicationCapableGetCallback(Ewk_Web_App_Capable_Get_Callback func,
258                                    void* user_data)
259       : func_(func), user_data_(user_data) {}
260   void Run(bool capable) {
261     if (func_) {
262       (func_)(capable ? EINA_TRUE : EINA_FALSE, user_data_);
263     }
264   }
265
266  private:
267   Ewk_Web_App_Capable_Get_Callback func_;
268   void* user_data_;
269 };
270
271 class DidChangeThemeColorCallback {
272  public:
273   DidChangeThemeColorCallback() : callback_(nullptr), user_data_(nullptr) {}
274   void Set(Ewk_View_Did_Change_Theme_Color_Callback callback, void* user_data) {
275     callback_ = callback;
276     user_data_ = user_data;
277   }
278   void Run(Evas_Object* o, const SkColor& color) {
279     if (callback_)
280       callback_(o, SkColorGetR(color), SkColorGetG(color), SkColorGetB(color),
281                 SkColorGetA(color), user_data_);
282   }
283
284  private:
285   Ewk_View_Did_Change_Theme_Color_Callback callback_;
286   void* user_data_;
287 };
288
289 class WebViewAsyncRequestHitTestDataCallback;
290 class JavaScriptDialogManagerEfl;
291 class PermissionPopupManager;
292
293 class EWebView {
294  public:
295   static EWebView* FromEwkView(Evas_Object* ewk_view);
296
297   EWebView(Ewk_Context*, Evas_Object* smart_object);
298   ~EWebView();
299
300   // initialize data members and activate event handlers.
301   // call this once after created and before use
302   void Initialize();
303
304   bool CreateNewWindow(content::WebViewDelegate::WebContentsCreateCallback);
305   static Evas_Object* GetHostWindowDelegate(const content::WebContents*);
306
307   content::WebContentsViewAura* wcva() const;
308   content::RenderWidgetHostViewAura* rwhva() const;
309   Ewk_Context* context() const { return context_.get(); }
310   Evas_Object* ewk_view() const { return ewk_view_; }
311   Evas_Object* efl_main_layout() const { return efl_main_layout_; }
312   Evas_Object* GetElmWindow() const;
313   Evas* GetEvas() const { return evas_object_evas_get(ewk_view_); }
314   PermissionPopupManager* GetPermissionPopupManager() const {
315     return permission_popup_manager_.get();
316   }
317
318   content::WebContents& web_contents() const { return *web_contents_.get(); }
319   content::WebContentsViewAura* GetWebContentsViewAura() const;
320
321 #if defined(TIZEN_ATK_SUPPORT)
322   EWebAccessibility& eweb_accessibility() const {
323     return *eweb_accessibility_.get();
324   }
325 #endif
326
327   template <EWebViewCallbacks::CallbackType callbackType>
328   EWebViewCallbacks::CallBack<callbackType> SmartCallback() const {
329     return EWebViewCallbacks::CallBack<callbackType>(ewk_view_);
330   }
331
332   // ewk_view api
333   void SetURL(const GURL& url, bool from_api = false);
334   const GURL& GetURL() const;
335   const GURL& GetOriginalURL() const;
336   void Reload();
337   void ReloadBypassingCache();
338   Eina_Bool CanGoBack();
339   Eina_Bool CanGoForward();
340   Eina_Bool HasFocus() const;
341   void SetFocus(Eina_Bool focus);
342   Eina_Bool GoBack();
343   Eina_Bool GoForward();
344   void Suspend();
345   void Resume();
346   void Stop();
347 #if BUILDFLAG(IS_TIZEN_TV)
348   void SetFloatVideoWindowState(bool enabled);
349 #endif // IS_TIZEN_TV
350   void SetSessionTimeout(uint64_t timeout);
351   double GetTextZoomFactor() const;
352   void SetTextZoomFactor(double text_zoom_factor);
353   double GetPageZoomFactor() const;
354   void SetPageZoomFactor(double page_zoom_factor);
355   void ExecuteEditCommand(const char* command, const char* value);
356 #if BUILDFLAG(IS_TIZEN)
357   void EnterDragState();
358 #endif
359   void SetOrientation(int orientation);
360   int GetOrientation();
361   bool TouchEventsEnabled() const;
362   void SetTouchEventsEnabled(bool enabled);
363   bool MouseEventsEnabled() const;
364   void SetMouseEventsEnabled(bool enabled);
365   void SendKeyEvent(Evas_Object* ewk_view, void* key_event, bool is_press);
366   bool SetKeyEventsEnabled(bool enabled);
367   void HandleTouchEvents(Ewk_Touch_Event_Type type,
368                          const Eina_List* points,
369                          const Evas_Modifier* modifiers);
370   void Show();
371   void Hide();
372   bool ExecuteJavaScript(const char* script,
373                          Ewk_View_Script_Execute_Callback callback,
374                          void* userdata);
375   bool SetUserAgent(const char* userAgent);
376   bool SetUserAgentAppName(const char* application_name);
377 #if BUILDFLAG(IS_TIZEN)
378   bool SetPrivateBrowsing(bool incognito);
379   bool GetPrivateBrowsing() const;
380 #endif
381   const char* GetUserAgent() const;
382   const char* GetUserAgentAppName() const;
383   const char* CacheSelectedText();
384   Ewk_Settings* GetSettings() { return settings_.get(); }
385   _Ewk_Frame* GetMainFrame();
386   void UpdateWebKitPreferences();
387   void LoadHTMLString(const char* html,
388                       const char* base_uri,
389                       const char* unreachable_uri);
390   void LoadPlainTextString(const char* plain_text);
391
392   void LoadHTMLStringOverridingCurrentEntry(const char* html,
393                                             const char* base_uri,
394                                             const char* unreachable_url);
395   void LoadData(const char* data,
396                 size_t size,
397                 const char* mime_type,
398                 const char* encoding,
399                 const char* base_uri,
400                 const char* unreachable_uri = NULL,
401                 bool should_replace_current_entry = false);
402   void InvokeLoadError(const GURL& url, int error_code, bool is_cancellation);
403
404   void SetViewAuthCallback(Ewk_View_Authentication_Callback callback,
405                            void* user_data);
406   void InvokeAuthCallback(LoginDelegateEfl* login_delegate,
407                           const GURL& url,
408                           const std::string& realm);
409   void Find(const char* text, Ewk_Find_Options);
410   void InvokeAuthCallbackOnUI(_Ewk_Auth_Challenge* auth_challenge);
411   void SetContentSecurityPolicy(const char* policy, Ewk_CSP_Header_Type type);
412   void HandlePopupMenu(std::vector<blink::mojom::MenuItemPtr> items,
413                        int selectedIndex,
414                        bool multiple,
415                        const gfx::Rect& bounds);
416   void HidePopupMenu();
417   void DidSelectPopupMenuItems(std::vector<int>& indices);
418   void DidCancelPopupMenu();
419   void HandleLongPressGesture(const content::ContextMenuParams&);
420   void ShowContextMenu(const content::ContextMenuParams&);
421   void CancelContextMenu(int request_id);
422   void SetScale(double scale_factor);
423   void SetScaleChangedCallback(Ewk_View_Scale_Changed_Callback callback,
424                                void* user_data);
425
426   bool GetScrollPosition(int* x, int* y) const;
427   void SetScroll(int x, int y);
428   void UrlRequestSet(const char* url,
429                      content::NavigationController::LoadURLType loadtype,
430                      Eina_Hash* headers,
431                      const char* body);
432
433   SelectPickerBase* GetSelectPicker() const { return select_picker_.get(); }
434   content::SelectionControllerEfl* GetSelectionController() const;
435   content::PopupControllerEfl* GetPopupController() const {
436     return popup_controller_.get();
437   }
438   ScrollDetector* GetScrollDetector() const { return scroll_detector_.get(); }
439   void MoveCaret(const gfx::Point& point);
440   void SelectFocusedLink();
441   bool GetSelectionRange(Eina_Rectangle* left_rect, Eina_Rectangle* right_rect);
442   Eina_Bool ClearSelection();
443
444   // Callback OnCopyFromBackingStore will be called once we get the snapshot
445   // from render
446   void OnCopyFromBackingStore(bool success, const SkBitmap& bitmap);
447
448   void OnFocusIn();
449   void OnFocusOut();
450
451   void UpdateContextMenu(bool is_password_input);
452   void RenderViewReady();
453
454   /**
455    * Creates a snapshot of given rectangle from EWebView
456    *
457    * @param rect rectangle of EWebView which will be taken into snapshot
458    * @param scale_factor scale factor
459    * @return created snapshot or NULL if error occured.
460    * @note ownership of snapshot is passed to caller
461    */
462   Evas_Object* GetSnapshot(Eina_Rectangle rect, float scale_factor);
463
464   bool GetSnapshotAsync(Eina_Rectangle rect,
465                         Ewk_Web_App_Screenshot_Captured_Callback callback,
466                         void* user_data,
467                         float scale_factor);
468   void InvokePolicyResponseCallback(_Ewk_Policy_Decision* policy_decision,
469                                     bool* defer);
470   void InvokePolicyNavigationCallback(const NavigationPolicyParams& params,
471                                       bool* handled);
472   void UseSettingsFont();
473
474   _Ewk_Hit_Test* RequestHitTestDataAt(int x, int y, Ewk_Hit_Test_Mode mode);
475   Eina_Bool AsyncRequestHitTestDataAt(int x,
476                                       int y,
477                                       Ewk_Hit_Test_Mode mode,
478                                       Ewk_View_Hit_Test_Request_Callback,
479                                       void* user_data);
480   _Ewk_Hit_Test* RequestHitTestDataAtBlinkCoords(int x,
481                                                  int y,
482                                                  Ewk_Hit_Test_Mode mode);
483   Eina_Bool AsyncRequestHitTestDataAtBlinkCords(
484       int x,
485       int y,
486       Ewk_Hit_Test_Mode mode,
487       Ewk_View_Hit_Test_Request_Callback,
488       void* user_data);
489   void DispatchAsyncHitTestData(const Hit_Test_Params& params,
490                                 int64_t request_id);
491   void UpdateHitTestData(const Hit_Test_Params& params);
492
493   int current_find_request_id() const { return current_find_request_id_; }
494   bool PlainTextGet(Ewk_View_Plain_Text_Get_Callback callback, void* user_data);
495   void InvokePlainTextGetCallback(const std::string& content_text,
496                                   int plain_text_get_callback_id);
497   int SetEwkViewPlainTextGetCallback(Ewk_View_Plain_Text_Get_Callback callback,
498                                      void* user_data);
499   void SetViewGeolocationPermissionCallback(
500       Ewk_View_Geolocation_Permission_Callback callback,
501       void* user_data);
502   bool InvokeViewGeolocationPermissionCallback(
503       _Ewk_Geolocation_Permission_Request*
504           geolocation_permission_request_context,
505       Eina_Bool* result);
506   void SetViewUserMediaPermissionCallback(
507       Ewk_View_User_Media_Permission_Callback callback,
508       void* user_data);
509   bool InvokeViewUserMediaPermissionCallback(
510       _Ewk_User_Media_Permission_Request* user_media_permission_request_context,
511       Eina_Bool* result);
512   void SetViewUserMediaPermissionQueryCallback(
513       Ewk_View_User_Media_Permission_Query_Callback callback,
514       void* user_data);
515   Ewk_User_Media_Permission_Query_Result
516   InvokeViewUserMediaPermissionQueryCallback(
517       _Ewk_User_Media_Permission_Query* user_media_permission_query_context);
518
519   void SetViewLoadErrorPageCallback(Ewk_View_Error_Page_Load_Callback callback,
520                                     void* user_data);
521   const char* InvokeViewLoadErrorPageCallback(
522       const GURL& url,
523       int error_code,
524       const std::string& error_description);
525   bool IsLoadErrorPageCallbackSet() const;
526   void SetViewUnfocusAllowCallback(Ewk_View_Unfocus_Allow_Callback callback,
527                                    void* user_data);
528   bool InvokeViewUnfocusAllowCallback(Ewk_Unfocus_Direction direction,
529                                       Eina_Bool* result);
530   void DidChangeContentsSize(int width, int height);
531   const Eina_Rectangle GetContentsSize() const;
532   void GetScrollSize(int* w, int* h);
533   void StopFinding();
534   void SetProgressValue(double progress);
535   double GetProgressValue();
536   const char* GetTitle();
537   bool SaveAsPdf(int width, int height, const std::string& file_name);
538   void BackForwardListClear();
539   _Ewk_Back_Forward_List* GetBackForwardList() const;
540   void InvokeBackForwardListChangedCallback();
541   _Ewk_History* GetBackForwardHistory() const;
542   bool WebAppCapableGet(Ewk_Web_App_Capable_Get_Callback callback,
543                         void* userData);
544   bool WebAppIconUrlGet(Ewk_Web_App_Icon_URL_Get_Callback callback,
545                         void* userData);
546   bool WebAppIconUrlsGet(Ewk_Web_App_Icon_URLs_Get_Callback callback,
547                          void* userData);
548   void InvokeWebAppCapableGetCallback(bool capable, int callbackId);
549   void InvokeWebAppIconUrlGetCallback(const std::string& iconUrl,
550                                       int callbackId);
551   void InvokeWebAppIconUrlsGetCallback(
552       const std::map<std::string, std::string>& iconUrls,
553       int callbackId);
554   void SetNotificationPermissionCallback(
555       Ewk_View_Notification_Permission_Callback callback,
556       void* user_data);
557   bool IsNotificationPermissionCallbackSet() const;
558   bool InvokeNotificationPermissionCallback(
559       Ewk_Notification_Permission_Request* request);
560
561   bool GetMHTMLData(Ewk_View_MHTML_Data_Get_Callback callback, void* user_data);
562   void OnMHTMLContentGet(const std::string& mhtml_content, int callback_id);
563   bool SavePageAsMHTML(const std::string& path,
564                        Ewk_View_Save_Page_Callback callback,
565                        void* user_data);
566   bool IsFullscreen();
567   void ExitFullscreen();
568   double GetScale();
569   void DidChangePageScaleFactor(double scale_factor);
570   void SetScaledContentsSize();
571   void SetJavaScriptAlertCallback(Ewk_View_JavaScript_Alert_Callback callback,
572                                   void* user_data);
573   void JavaScriptAlertReply();
574   void SetJavaScriptConfirmCallback(
575       Ewk_View_JavaScript_Confirm_Callback callback,
576       void* user_data);
577   void JavaScriptConfirmReply(bool result);
578   void SetJavaScriptPromptCallback(Ewk_View_JavaScript_Prompt_Callback callback,
579                                    void* user_data);
580   void JavaScriptPromptReply(const char* result);
581   void set_renderer_crashed();
582   void GetPageScaleRange(double* min_scale, double* max_scale);
583   bool SetDrawsTransparentBackground(bool enabled);
584   bool GetDrawsTransparentBackground();
585   bool SetBackgroundColor(int red, int green, int blue, int alpha);
586   bool GetBackgroundColor(Ewk_View_Background_Color_Get_Callback callback,
587                           void* user_data);
588   void OnGetBackgroundColor(int callback_id, SkColor bg_color);
589
590   void GetSessionData(const char** data, unsigned* length) const;
591   bool RestoreFromSessionData(const char* data, unsigned length);
592   void ShowFileChooser(content::RenderFrameHost* render_frame_host,
593                        const blink::mojom::FileChooserParams&);
594   void SetBrowserFont();
595   bool IsDragging() const;
596
597   void RequestColorPicker(int r, int g, int b, int a);
598   bool SetColorPickerColor(int r, int g, int b, int a);
599   void InputPickerShow(ui::TextInputType input_type,
600                        double input_value,
601                        content::DateTimeChooserEfl* date_time_chooser);
602
603   void ShowContentsDetectedPopup(const char*);
604
605   // Returns TCP port number with Inspector, or 0 if error.
606   int StartInspectorServer(int port = 0);
607   bool StopInspectorServer();
608
609   void LoadNotFoundErrorPage(const std::string& invalidUrl);
610   static std::string GetPlatformLocale();
611   bool GetLinkMagnifierEnabled() const;
612   void SetLinkMagnifierEnabled(bool enabled);
613
614   bool GetHorizontalPanningHold() const;
615   void SetHorizontalPanningHold(bool hold);
616   bool GetVerticalPanningHold() const;
617   void SetVerticalPanningHold(bool hold);
618
619   void SetQuotaPermissionRequestCallback(
620       Ewk_Quota_Permission_Request_Callback callback,
621       void* user_data);
622 #if !defined(EWK_BRINGUP)  // FIXME: m114 bringup
623   void InvokeQuotaPermissionRequest(
624       _Ewk_Quota_Permission_Request* request,
625       content::QuotaPermissionContext::PermissionCallback cb);
626   void QuotaRequestReply(const _Ewk_Quota_Permission_Request* request,
627                          bool allow);
628   void QuotaRequestCancel(const _Ewk_Quota_Permission_Request* request);
629   void SetViewMode(blink::WebViewMode view_mode);
630 #endif
631   gfx::Point GetContextMenuPosition() const;
632
633   content::ContextMenuControllerEfl* GetContextMenuController() {
634     return context_menu_.get();
635   }
636
637   bool SetMainFrameScrollbarVisible(bool visible);
638   bool GetMainFrameScrollbarVisible(
639       Ewk_View_Main_Frame_Scrollbar_Visible_Get_Callback callback,
640       void* user_data);
641   void InvokeMainFrameScrollbarVisibleCallback(int callback_id, bool visible);
642
643   void ResetContextMenuController();
644   Eina_Bool AddJavaScriptMessageHandler(Evas_Object* view,
645                                         Ewk_View_Script_Message_Cb callback,
646                                         std::string name);
647
648   content::GinNativeBridgeDispatcherHost* GetGinNativeBridgeDispatcherHost()
649       const {
650     return gin_native_bridge_dispatcher_host_.get();
651   }
652   bool SetPageVisibility(Ewk_Page_Visibility_State page_visibility_state);
653
654   void SetExceededIndexedDatabaseQuotaCallback(
655       Ewk_View_Exceeded_Indexed_Database_Quota_Callback callback,
656       void* user_data);
657   void InvokeExceededIndexedDatabaseQuotaCallback(const GURL& origin,
658                                                   int64_t current_quota);
659   void ExceededIndexedDatabaseQuotaReply(bool allow);
660
661 #if defined(TIZEN_VIDEO_HOLE)
662   void EnableVideoHoleSupport();
663 #endif
664
665 #if defined(TIZEN_TBM_SUPPORT)
666   void SetOffscreenRendering(bool enable);
667 #endif
668
669   /// ---- Event handling
670   bool HandleShow();
671   bool HandleHide();
672   bool HandleMove(int x, int y);
673   bool HandleResize(int width, int height);
674   bool HandleTextSelectionDown(int x, int y);
675   bool HandleTextSelectionUp(int x, int y);
676
677   void HandleRendererProcessCrash();
678   void InvokeWebProcessCrashedCallback();
679
680   void HandleTapGestureForSelection(bool is_content_editable);
681   void HandleZoomGesture(blink::WebGestureEvent& event);
682   void ClosePage();
683
684   void RequestManifest(Ewk_View_Request_Manifest_Callback callback,
685                        void* user_data);
686   void DidRespondRequestManifest(_Ewk_View_Request_Manifest* manifest,
687                                  Ewk_View_Request_Manifest_Callback callback,
688                                  void* user_data);
689
690   void SetBeforeUnloadConfirmPanelCallback(
691       Ewk_View_Before_Unload_Confirm_Panel_Callback callback,
692       void* user_data);
693   void ReplyBeforeUnloadConfirmPanel(Eina_Bool result);
694   void SyncAcceptLanguages(const std::string& accept_languages);
695
696 #if BUILDFLAG(IS_TIZEN_TV)
697   //Browser edge scroll
698   bool EdgeScrollBy(int delta_x, int delta_y);
699   void GetMousePosition(gfx::Point&);
700   void InvokeEdgeScrollByCallback(const gfx::Point&, bool);
701 #endif
702
703   void OnOverscrolled(const gfx::Vector2dF& accumulated_overscroll,
704                       const gfx::Vector2dF& latest_overscroll_delta);
705
706   bool SetVisibility(bool enable);
707   void SetDoNotTrack(Eina_Bool);
708
709 #if defined(TIZEN_ATK_SUPPORT)
710   void UpdateSpatialNavigationStatus(Eina_Bool enable);
711   void UpdateAccessibilityStatus(Eina_Bool enable);
712
713   bool CheckLazyInitializeAtk() {
714     return is_initialized_ && lazy_initialize_atk_;
715   }
716   void InitAtk();
717   bool GetAtkStatus();
718 #endif
719 #if defined(TIZEN_PEPPER_EXTENSIONS)
720   void InitializePepperExtensionSystem();
721   EwkExtensionSystemDelegate* GetExtensionDelegate();
722   void SetWindowId();
723   void SetPepperExtensionWidgetInfo(Ewk_Value widget_pepper_ext_info);
724   void SetPepperExtensionCallback(Generic_Sync_Call_Callback cb, void* data);
725   void RegisterPepperExtensionDelegate();
726   void UnregisterPepperExtensionDelegate();
727 #endif
728
729   bool ShouldIgnoreNavigation(content::NavigationHandle* navigation_handle);
730
731 #if BUILDFLAG(IS_TIZEN_TV)
732   void DrawLabel(Evas_Object* image, Eina_Rectangle rect);
733   void DeactivateAtk(bool deactivated);
734   void ClearLabels();
735   void AddDynamicCertificatePath(const std::string& host,
736                                  const std::string& cert_path);
737
738   bool SetMixedContents(bool allow);
739   void ClearAllTilesResources();
740   bool UseEarlyRWI() { return use_early_rwi_; }
741   bool RWIInfoShowed() { return rwi_info_showed_; }
742   GURL RWIURL() { return rwi_gurl_; }
743   void OnDialogClosed();
744   void NotifyMediaStateChanged(uint32_t type,
745                                uint32_t previous,
746                                uint32_t current);
747 #endif  // IS_TIZEN_TV
748
749   void SetDidChangeThemeColorCallback(
750       Ewk_View_Did_Change_Theme_Color_Callback callback,
751       void* user_data);
752   void DidChangeThemeColor(const SkColor& color);
753
754   void OnSelectionRectReceived(const gfx::Rect& selection_rect) const;
755
756  private:
757   static void NativeViewResize(void* data,
758                                Evas* e,
759                                Evas_Object* obj,
760                                void* event_info);
761   void InitializeContent();
762   void InitializeWindowTreeHost();
763   void SendDelayedMessages(content::RenderViewHost* render_view_host);
764
765   void EvasToBlinkCords(int x, int y, int* view_x, int* view_y);
766   Eina_Bool AsyncRequestHitTestDataAtBlinkCords(
767       int x,
768       int y,
769       Ewk_Hit_Test_Mode mode,
770       WebViewAsyncRequestHitTestDataCallback* cb);
771
772 #if BUILDFLAG(IS_TIZEN_TV)
773   void InitInspectorServer();
774
775   void RunPendingSetFocus(Eina_Bool focus);
776 #endif
777
778 #if BUILDFLAG(IS_TIZEN) && !defined(EWK_BRINGUP)
779   static void cameraResultCb(service_h request,
780                              service_h reply,
781                              service_result_e result,
782                              void* data);
783
784   bool LaunchCamera(std::u16string mimetype);
785 #endif
786
787   JavaScriptDialogManagerEfl* GetJavaScriptDialogManagerEfl();
788
789   // Changes viewport without resizing Evas_Object representing webview
790   // and its corresponding RWHV to let Blink renders custom viewport
791   // while showing picker.
792   void AdjustViewPortHeightToPopupMenu(bool is_popup_menu_visible);
793
794   void ShowContextMenuInternal(const content::ContextMenuParams&);
795
796   void UpdateWebkitPreferencesEfl(content::RenderViewHost*);
797
798   void ChangeScroll(int& x, int& y);
799   void ScrollFocusedNodeIntoView();
800
801   void GenerateMHTML(Ewk_View_Save_Page_Callback callback,
802                      void* user_data,
803                      const base::FilePath& file_path);
804   void MHTMLGenerated(Ewk_View_Save_Page_Callback callback,
805                       void* user_data,
806                       const base::FilePath& file_path,
807                       int64_t file_size);
808
809   static void VisibleContentChangedCallback(void* user_data,
810                                             Evas_Object* object,
811                                             void* event_info);
812
813   static void OnCustomScrollBeginCallback(void* user_data,
814                                           Evas_Object* object,
815                                           void* event_info);
816
817   static void OnCustomScrollEndCallback(void* user_data,
818                                         Evas_Object* object,
819                                         void* event_info);
820   void UpdateContextMenuWithParams(const content::ContextMenuParams& params);
821
822   static Eina_Bool DelayedPopulateAndShowContextMenu(void* data);
823
824   scoped_refptr<Ewk_Context> context_;
825   std::unique_ptr<content::WebContents> web_contents_;
826   std::unique_ptr<content::WebContentsDelegateEfl> web_contents_delegate_;
827   std::unique_ptr<content::WebViewDelegate> webview_delegate_;
828   std::string pending_url_request_;
829   std::unique_ptr<Ewk_Settings> settings_;
830   std::unique_ptr<_Ewk_Frame> frame_;
831   std::unique_ptr<_Ewk_Policy_Decision> window_policy_;
832   Evas_Object* ewk_view_;
833   Evas_Object* efl_main_layout_;
834   bool key_events_enabled_ = true;
835   bool mouse_events_enabled_;
836   double text_zoom_factor_;
837   mutable std::string user_agent_;
838   mutable std::string user_agent_app_name_;
839   std::unique_ptr<_Ewk_Auth_Challenge> auth_challenge_;
840   std::string selected_text_cached_;
841
842   std::unique_ptr<content::ContextMenuControllerEfl> context_menu_;
843 #if !defined(EWK_BRINGUP)  // FIXME: m71 bringup
844   std::unique_ptr<content::FileChooserControllerEfl> file_chooser_;
845 #endif
846   std::unique_ptr<content::PopupControllerEfl> popup_controller_;
847   std::u16string previous_text_;
848   int current_find_request_id_;
849   static int find_request_id_counter_;
850
851   typedef WebViewCallback<Ewk_View_Plain_Text_Get_Callback, const char*>
852       EwkViewPlainTextGetCallback;
853   base::IDMap<EwkViewPlainTextGetCallback*> plain_text_get_callback_map_;
854
855   typedef WebViewCallback<Ewk_View_MHTML_Data_Get_Callback, const char*>
856       MHTMLCallbackDetails;
857   base::IDMap<MHTMLCallbackDetails*> mhtml_callback_map_;
858
859   typedef WebViewCallback<Ewk_View_Main_Frame_Scrollbar_Visible_Get_Callback,
860                           bool>
861       MainFrameScrollbarVisibleGetCallback;
862   base::IDMap<MainFrameScrollbarVisibleGetCallback*>
863       main_frame_scrollbar_visible_callback_map_;
864
865   base::IDMap<BackgroundColorGetCallback*> background_color_get_callback_map_;
866
867   gfx::Size contents_size_;
868   double progress_;
869   mutable std::string title_;
870   Hit_Test_Params hit_test_params_;
871   base::WaitableEvent hit_test_completion_;
872   double page_scale_factor_;
873   double x_delta_;
874   double y_delta_;
875
876   WebViewCallback<Ewk_View_Geolocation_Permission_Callback,
877                   _Ewk_Geolocation_Permission_Request*>
878       geolocation_permission_cb_;
879   WebViewCallback<Ewk_View_User_Media_Permission_Callback,
880                   _Ewk_User_Media_Permission_Request*>
881       user_media_permission_cb_;
882   WebViewCallbackWithReturnValue<Ewk_User_Media_Permission_Query_Result,
883                                  Ewk_View_User_Media_Permission_Query_Callback,
884                                  _Ewk_User_Media_Permission_Query*>
885       user_media_permission_query_cb_;
886   WebViewErrorPageLoadCallback<Ewk_View_Error_Page_Load_Callback,
887                                Ewk_Error*,
888                                Ewk_Error_Page*>
889       load_error_page_cb_;
890   WebViewCallback<Ewk_View_Unfocus_Allow_Callback, Ewk_Unfocus_Direction>
891       unfocus_allow_cb_;
892   WebViewCallback<Ewk_View_Notification_Permission_Callback,
893                   Ewk_Notification_Permission_Request*>
894       notification_permission_callback_;
895   WebViewCallback<Ewk_Quota_Permission_Request_Callback,
896                   const _Ewk_Quota_Permission_Request*>
897       quota_request_callback_;
898   WebViewCallback<Ewk_View_Authentication_Callback, _Ewk_Auth_Challenge*>
899       authentication_cb_;
900   WebViewCallback<Ewk_View_Scale_Changed_Callback, double> scale_changed_cb_;
901
902   std::unique_ptr<content::InputPicker> input_picker_;
903
904   DidChangeThemeColorCallback did_change_theme_color_callback_;
905
906   base::IDMap<WebApplicationIconUrlGetCallback*>
907       web_app_icon_url_get_callback_map_;
908   base::IDMap<WebApplicationIconUrlsGetCallback*>
909       web_app_icon_urls_get_callback_map_;
910   base::IDMap<WebApplicationCapableGetCallback*>
911       web_app_capable_get_callback_map_;
912   std::unique_ptr<PermissionPopupManager> permission_popup_manager_;
913   std::unique_ptr<ScrollDetector> scroll_detector_;
914
915   // Manages injecting native objects.
916   std::unique_ptr<content::GinNativeBridgeDispatcherHost>
917       gin_native_bridge_dispatcher_host_;
918
919   WebViewExceededQuotaCallback<
920       Ewk_View_Exceeded_Indexed_Database_Quota_Callback,
921       Ewk_Security_Origin*,
922       long long>
923       exceeded_indexed_db_quota_callback_;
924   std::unique_ptr<Ewk_Security_Origin> exceeded_indexed_db_quota_origin_;
925 #if !defined(EWK_BRINGUP)  // FIXME: m114 bringup
926   std::map<const _Ewk_Quota_Permission_Request*,
927            content::QuotaPermissionContext::PermissionCallback>
928       quota_permission_request_map_;
929 #endif
930 #if BUILDFLAG(IS_TIZEN)
931   blink::mojom::FileChooserParams::Mode filechooser_mode_ =
932       blink::mojom::FileChooserParams::Mode::kOpen;
933   Ecore_Event_Handler* window_rotate_handler_ = nullptr;
934 #endif
935
936   bool is_initialized_;
937
938 #if BUILDFLAG(IS_TIZEN_TV)
939   bool is_processing_edge_scroll_;
940   bool use_early_rwi_;
941   bool rwi_info_showed_;
942   GURL rwi_gurl_;
943
944   base::OnceClosure pending_setfocus_closure_;
945 #endif
946
947   std::unique_ptr<_Ewk_Back_Forward_List> back_forward_list_;
948
949   static content::WebViewDelegate::WebContentsCreateCallback
950       create_new_window_web_contents_cb_;
951
952 #if defined(TIZEN_VIDEO_HOLE)
953   void EnableVideoHoleSupportInternal();
954 #endif
955   gfx::Vector2d previous_scroll_position_;
956
957   gfx::Point context_menu_position_;
958
959   content::ContextMenuParams saved_context_menu_params_;
960
961   std::vector<IPC::Message*> delayed_messages_;
962
963   std::map<int64_t, WebViewAsyncRequestHitTestDataCallback*> hit_test_callback_;
964
965   content::AcceptLanguagesHelper::AcceptLangsChangedCallback
966       accept_langs_changed_callback_;
967
968   std::unique_ptr<SelectPickerBase> select_picker_;
969   std::unique_ptr<aura::WindowTreeHost> host_;
970   std::unique_ptr<aura::client::FocusClient> focus_client_;
971   std::unique_ptr<aura::client::WindowParentingClient> window_parenting_client_;
972   std::unique_ptr<ui::CompositorObserver> compositor_observer_;
973
974 #if defined(TIZEN_ATK_SUPPORT)
975   std::unique_ptr<EWebAccessibility> eweb_accessibility_;
976   bool lazy_initialize_atk_ = false;
977 #endif
978 #if defined(TIZEN_PEPPER_EXTENSIONS)
979   content::ExtensionSystemDelegateManager::RenderFrameID render_frame_id_;
980 #endif
981 #if defined(TIZEN_VIDEO_HOLE)
982   bool pending_video_hole_setting_ = false;
983 #endif
984
985   Ecore_Timer* delayed_show_context_menu_timer_ = nullptr;
986 };
987
988 const unsigned int g_default_tilt_motion_sensitivity = 3;
989
990 #endif