Implement Focus UI
[framework/web/webkit-efl.git] / Source / WebKit2 / UIProcess / API / efl / EwkViewImpl.h
index e90a50f..dfe660f 100755 (executable)
@@ -161,6 +161,9 @@ struct Ewk_View_Callback_Context {
 #if ENABLE(TIZEN_SQL_DATABASE)
         Ewk_View_Exceeded_Database_Quota_Callback exceededDatabaseQuotaCallback;
 #endif
+#if ENABLE(TIZEN_FILE_SYSTEM)
+        Ewk_View_Exceeded_Local_File_System_Quota_Callback exceededLocalFileSystemQuotaCallback;
+#endif
     };
 
     Evas_Object* ewkView;
@@ -313,10 +316,19 @@ public:
     const WebCore::IntPoint scrollPosition() const { return m_scrollPosition; }
 #endif
 
-#if ENABLE(TOUCH_EVENTS) && ENABLE(TIZEN_GESTURE)
+#if ENABLE(TIZEN_GESTURE)
+#if ENABLE(TOUCH_EVENTS)
     void feedTouchEventsByType(Ewk_Touch_Event_Type);
 #endif
+    void setDoubleTapEnabled(bool);
+#endif
+
+    void didChangeScrollAndScale(const WebCore::IntPoint&, float);
+
+#if ENABLE(TIZEN_FOCUS_UI)
+    static void pages(Vector<RefPtr<WebKit::WebPageProxy> >&);
 #endif
+#endif // #if OS(TIZEN)
 
     // FIXME: Make members private for encapsulation.
     OwnPtr<WebKit::PageClientImpl> pageClient;
@@ -466,6 +478,9 @@ public:
 #if ENABLE(TIZEN_SQL_DATABASE)
     OwnPtr<Ewk_View_Callback_Context> exceededDatabaseQuotaContext;
 #endif
+#if ENABLE(TIZEN_FILE_SYSTEM)
+    OwnPtr<Ewk_View_Callback_Context> exceededLocalFileSystemQuotaContext;
+#endif
     Ewk_Security_Origin* exceededQuotaOrigin;
     bool isWaitingForExceededQuotaPopupReply;
 #endif // #if OS(TIZEN)