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