[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc
commit-queue at webkit.org
commit-queue at webkit.org
Wed Dec 22 13:38:19 UTC 2010
The following commit has been merged in the debian/experimental branch:
commit c771d1f6814033ffa4c4d9ab07d18a39abae6a63
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Sep 22 07:25:03 2010 +0000
2010-09-22 Kwang Yul Seo <skyul at company100.net>
Reviewed by Kent Tamura.
[BREWMP] Change the home directory path to the WebKit module directory
https://bugs.webkit.org/show_bug.cgi?id=45895
AEEFS_HOME_DIR denotes the currently running application's directory.
Change it to fs:/~<clsid> to use the WebKit module directory as home.
* platform/brew/FileSystemBrew.cpp:
(WebCore::homeDirectoryPath):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68018 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 76a15cc..8943478 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,19 @@
Reviewed by Kent Tamura.
+ [BREWMP] Change the home directory path to the WebKit module directory
+ https://bugs.webkit.org/show_bug.cgi?id=45895
+
+ AEEFS_HOME_DIR denotes the currently running application's directory.
+ Change it to fs:/~<clsid> to use the WebKit module directory as home.
+
+ * platform/brew/FileSystemBrew.cpp:
+ (WebCore::homeDirectoryPath):
+
+2010-09-22 Kwang Yul Seo <skyul at company100.net>
+
+ Reviewed by Kent Tamura.
+
[BREWMP] Add dummy Pasteboard
https://bugs.webkit.org/show_bug.cgi?id=46107
diff --git a/WebCore/platform/brew/FileSystemBrew.cpp b/WebCore/platform/brew/FileSystemBrew.cpp
index 88aa05b..6520b81 100644
--- a/WebCore/platform/brew/FileSystemBrew.cpp
+++ b/WebCore/platform/brew/FileSystemBrew.cpp
@@ -170,7 +170,8 @@ bool makeAllDirectories(const String& path)
String homeDirectoryPath()
{
- return String(AEEFS_HOME_DIR);
+ const int webViewClassId = 0x010aa04c;
+ return String::format("fs:/~0X%08X/", webViewClassId);
}
String pathGetFileName(const String& path)
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list