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