Implement Focus UI
[framework/web/webkit-efl.git] / Source / WebKit2 / UIProcess / WebPageProxy.messages.in
index 8075b43..7665ffc 100755 (executable)
@@ -301,10 +301,20 @@ messages -> WebPageProxy {
 
     # Authentication messages
     CanAuthenticateAgainstProtectionSpaceInFrame(uint64_t frameID, WebCore::ProtectionSpace protectionSpace) -> (bool canAuthenticate)
+#if ENABLE(TIZEN_ON_AUTHENTICATION_REQUESTED)
+    DidReceiveAuthenticationChallenge(uint64_t frameID, WebCore::AuthenticationChallenge challenge, uint64_t challengeID) -> (bool canAuthenticate) Delayed
+#endif
+#if !ENABLE(TIZEN_ON_AUTHENTICATION_REQUESTED)
     DidReceiveAuthenticationChallenge(uint64_t frameID, WebCore::AuthenticationChallenge challenge, uint64_t challengeID)
+#endif
 
     # Database messages
+#if ENABLE(TIZEN_SQL_DATABASE)
+    ExceededDatabaseQuota(uint64_t frameID, WTF::String originIdentifier, WTF::String databaseDisplayName, uint64_t expectedUsage) -> (bool allowExceed) Delayed
+#endif
+#if !ENABLE(TIZEN_SQL_DATABASE)
     ExceededDatabaseQuota(uint64_t frameID, WTF::String originIdentifier, WTF::String databaseName, WTF::String databaseDisplayName, uint64_t currentQuota, uint64_t currentOriginUsage, uint64_t currentDatabaseUsage, uint64_t expectedUsage) -> (uint64_t newQuota)
+#endif
 
 #if ENABLE(TIZEN_APPLICATION_CACHE)
     RequestApplicationCachePermission(uint64_t frameID, WTF::String originIdentifier) -> (bool allow) Delayed
@@ -332,9 +342,6 @@ messages -> WebPageProxy {
     UpdateSpellingUIWithMisspelledWord(WTF::String misspelledWord)
     UpdateSpellingUIWithGrammarString(WTF::String badGrammarPhrase, WebCore::GrammarDetail grammarDetail)
     GetGuessesForWord(WTF::String word, WTF::String context) -> (Vector<WTF::String> guesses)
-#if ENABLE(TIZEN_ISF_PORT)
-    SetInputMethodState(bool active);
-#endif
 #if ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
     TextChangeInTextField(WTF::String name, WTF::String value)
 #endif
@@ -437,10 +444,6 @@ messages -> WebPageProxy {
 
     SetBackgroundColor(double red, double green, double blue, double alpha)
 
-#if ENABLE(TIZEN_WEBKIT2_GET_TEXT_STYLE_FOR_SELECTION)
-    DidGetTextStyleStateForSelection(int underlineState, int italicState, int boldState)
-#endif
-
 #if ENABLE(SCREEN_ORIENTATION_SUPPORT) && ENABLE(TIZEN_SCREEN_ORIENTATION_SUPPORT)
     LockOrientation(int32_t orientation) -> (bool result)
     UnlockOrientation()
@@ -455,11 +458,26 @@ messages -> WebPageProxy {
 #endif
 
 #if ENABLE(TIZEN_SCREEN_READER)
-    DidScreenReaderFocusRectChanged(WebCore::IntRect rect)
     DidScreenReaderTextChanged(WTF::String text)
 #endif
 
+#if ENABLE(TIZEN_SCREEN_READER) || ENABLE(TIZEN_FOCUS_UI)
+    DidChangeFocusedRect(WebCore::IntRect rect)
+#endif
+
 #if ENABLE(TIZEN_INDEXED_DATABASE)
     ExceededIndexedDatabaseQuota(uint64_t frameID, WTF::String originIdentifier, int64_t currentUsage) -> (bool returnValue) Delayed
 #endif
+
+#if ENABLE(TIZEN_FILE_SYSTEM)
+    ExceededLocalFileSystemQuota(uint64_t frameID, WTF::String originIdentifier, int64_t currentUsage) -> (bool allow) Delayed
+#endif
+
+#if ENABLE(TIZEN_ISF_PORT)
+    RemoveInputMethodContext(uintptr_t id)
+#endif
+
+#if ENABLE(TIZEN_WEBKIT2_NOTIFY_SUSPEND_BY_REMOTE_WEB_INSPECTOR)
+    setContentSuspendedByInspector(bool isSuspended)
+#endif
 }