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