[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

kinuko at chromium.org kinuko at chromium.org
Wed Dec 22 12:55:29 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit b004ad9c73c3a0314643b243a531a9421fc55ccd
Author: kinuko at chromium.org <kinuko at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Sep 2 01:20:29 2010 +0000

    2010-09-01  Kinuko Yasuda  <kinuko at chromium.org>
    
            Reviewed by Jian Li.
    
            Add more FileError and FileException code for FileWriter and FileSystem API
            https://bugs.webkit.org/show_bug.cgi?id=45048
    
            Adding SYNTAX_ERR for FileWriter.
            http://dev.w3.org/2009/dap/file-system/file-writer.html
    
            Adding INVALID_STATE_ERR, INVALID_MODIFICATION_ERR and QUOTA_EXCEEDED_ERR for FileSystem.
            http://dev.w3.org/2009/dap/file-system/file-dir-sys.html
    
            Adding NO_MODIFICATION_ALLOWED_ERR (to FileException) for both.
    
            * fileapi/FileError.idl:
            * fileapi/FileException.idl:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66629 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 5e5e446..21ffa46 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,21 @@
+2010-09-01  Kinuko Yasuda  <kinuko at chromium.org>
+
+        Reviewed by Jian Li.
+
+        Add more FileError and FileException code for FileWriter and FileSystem API
+        https://bugs.webkit.org/show_bug.cgi?id=45048
+
+        Adding SYNTAX_ERR for FileWriter.
+        http://dev.w3.org/2009/dap/file-system/file-writer.html
+
+        Adding INVALID_STATE_ERR, INVALID_MODIFICATION_ERR and QUOTA_EXCEEDED_ERR for FileSystem.
+        http://dev.w3.org/2009/dap/file-system/file-dir-sys.html
+
+        Adding NO_MODIFICATION_ALLOWED_ERR (to FileException) for both.
+
+        * fileapi/FileError.idl:
+        * fileapi/FileException.idl:
+
 2010-09-01  Mihai Parparita  <mihaip at chromium.org>
 
         Reviewed by Brady Eidson.
diff --git a/WebCore/fileapi/FileError.idl b/WebCore/fileapi/FileError.idl
index b73670b..a5e2bac 100644
--- a/WebCore/fileapi/FileError.idl
+++ b/WebCore/fileapi/FileError.idl
@@ -37,9 +37,13 @@ module html {
 #if !defined(LANGUAGE_OBJECTIVE_C)
         const unsigned short NO_MODIFICATION_ALLOWED_ERR = 7;
         const unsigned short NOT_FOUND_ERR = 8;
+        const unsigned short INVALID_STATE_ERR = 11;
+        const unsigned short SYNTAX_ERR = 12;
+        const unsigned short INVALID_MODIFICATION_ERR = 13;
 #endif
         const unsigned short SECURITY_ERR = 18;
         const unsigned short ABORT_ERR = 20;
+        const unsigned short QUOTA_EXCEEDED_ERR = 22;
         const unsigned short NOT_READABLE_ERR = 24;
         const unsigned short ENCODING_ERR = 26;
         readonly attribute unsigned short code;
diff --git a/WebCore/fileapi/FileException.idl b/WebCore/fileapi/FileException.idl
index 4a5f424..cd53a7e 100644
--- a/WebCore/fileapi/FileException.idl
+++ b/WebCore/fileapi/FileException.idl
@@ -45,10 +45,14 @@ module html {
 #endif
 
         // FileExceptionCode
+        const unsigned short NO_MODIFICATION_ALLOWED_ERR = 7;
         const unsigned short NOT_FOUND_ERR = 8;
+        const unsigned short INVALID_STATE_ERR = 11;
+        const unsigned short SYNTAX_ERR = 12;
+        const unsigned short INVALID_MODIFICATION_ERR = 13;
         const unsigned short SECURITY_ERR = 18;
         const unsigned short ABORT_ERR = 20;
-
+        const unsigned short QUOTA_EXCEEDED_ERR = 22;
         const unsigned short NOT_READABLE_ERR = 24;
         const unsigned short ENCODING_ERR = 26;
     };

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list