From 60bd503e418b660c342564c5d515bc193a7b53c8 Mon Sep 17 00:00:00 2001 From: Jiyeon Kim Date: Wed, 24 Apr 2013 10:18:35 +0900 Subject: [PATCH] Change indexed database directory path for deleting indexed database [Title] Change indexed database directory path for deleting indexed database [Problem] Indexed database directory is not deleted [Cause] Data directory of browser was changed [Solution] Change indexed database directory path Change-Id: Ie19ee6e7421e57f0ad15005690d0e6c6b82c923c --- Source/WebKit2/UIProcess/API/efl/ewk_context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/WebKit2/UIProcess/API/efl/ewk_context.cpp b/Source/WebKit2/UIProcess/API/efl/ewk_context.cpp index 89b9a5e..1b7967c 100755 --- a/Source/WebKit2/UIProcess/API/efl/ewk_context.cpp +++ b/Source/WebKit2/UIProcess/API/efl/ewk_context.cpp @@ -1374,7 +1374,7 @@ Eina_Bool ewk_context_web_indexed_database_delete_all(Ewk_Context* ewkContext) TIZEN_LOGI("ewkContext (%p)", ewkContext); DEFINE_STATIC_LOCAL(const String, fileMatchPattern, ("*")); - DEFINE_STATIC_LOCAL(const String, indexedDatabaseDirectory, ("/opt/apps/com.samsung.browser/data/.webkit/indexedDatabases")); + DEFINE_STATIC_LOCAL(const String, indexedDatabaseDirectory, ("/opt/usr/apps/com.samsung.browser/data/.webkit/indexedDatabases")); Vector paths = WebCore::listDirectory(indexedDatabaseDirectory, fileMatchPattern); Vector::const_iterator end = paths.end(); -- 2.7.4