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