[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 14:21:19 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit a970833d30a9f7a89e558d166e75e62eb35467ac
Author: kinuko at chromium.org <kinuko at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 7 00:39:17 2010 +0000

    2010-10-06  Kinuko Yasuda  <kinuko at chromium.org>
    
            Unreviewed, trying to fix chromium Windows build.
    
            Explicitly give the parameter value that has a default parameter value.
    
            * page/DOMWindow.cpp:
            (WebCore::DOMWindow::requestFileSystem):
            * workers/WorkerContext.cpp:
            (WebCore::WorkerContext::requestFileSystem):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69262 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 1871964..521dae4 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-10-06  Kinuko Yasuda  <kinuko at chromium.org>
+
+        Unreviewed, trying to fix chromium Windows build.
+
+        Explicitly give the parameter value that has a default parameter value.
+
+        * page/DOMWindow.cpp:
+        (WebCore::DOMWindow::requestFileSystem):
+        * workers/WorkerContext.cpp:
+        (WebCore::WorkerContext::requestFileSystem):
+
 2010-10-06  Darin Adler  <darin at apple.com>
 
         Try to fix Windows build.
diff --git a/WebCore/page/DOMWindow.cpp b/WebCore/page/DOMWindow.cpp
index 5e8a57f..bb89124 100644
--- a/WebCore/page/DOMWindow.cpp
+++ b/WebCore/page/DOMWindow.cpp
@@ -740,7 +740,7 @@ void DOMWindow::requestFileSystem(int type, long long size, PassRefPtr<FileSyste
         return;
     }
 
-    LocalFileSystem::localFileSystem().requestFileSystem(document, fileSystemType, size, FileSystemCallbacks::create(successCallback, errorCallback, document));
+    LocalFileSystem::localFileSystem().requestFileSystem(document, fileSystemType, size, FileSystemCallbacks::create(successCallback, errorCallback, document), false);
 }
 
 COMPILE_ASSERT(static_cast<int>(DOMWindow::TEMPORARY) == static_cast<int>(AsyncFileSystem::Temporary), enum_mismatch);
diff --git a/WebCore/workers/WorkerContext.cpp b/WebCore/workers/WorkerContext.cpp
index ea1ba89..478b360 100644
--- a/WebCore/workers/WorkerContext.cpp
+++ b/WebCore/workers/WorkerContext.cpp
@@ -365,7 +365,7 @@ void WorkerContext::requestFileSystem(int type, long long size, PassRefPtr<FileS
         return;
     }
 
-    LocalFileSystem::localFileSystem().requestFileSystem(this, fileSystemType, size, FileSystemCallbacks::create(successCallback, errorCallback, this));
+    LocalFileSystem::localFileSystem().requestFileSystem(this, fileSystemType, size, FileSystemCallbacks::create(successCallback, errorCallback, this), false);
 }
 
 PassRefPtr<DOMFileSystemSync> WorkerContext::requestFileSystemSync(int type, long long size, ExceptionCode& ec)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list