From 99b5998a35396257cc2f206ecfcd08cfdcf93bd0 Mon Sep 17 00:00:00 2001 From: Chandan Padhi Date: Wed, 14 Nov 2018 02:43:17 -0800 Subject: [PATCH] [M69 Dev] Enable EdjePath for EdgeEffect This change is necessary to avoid CHECK failure during gesture handling. Change-Id: Icfddb71d6fd8cb8284f33135784b8221e76413c4 Signed-off-by: Chandan Padhi --- tizen_src/chromium_impl/content/common/paths_efl.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tizen_src/chromium_impl/content/common/paths_efl.cc b/tizen_src/chromium_impl/content/common/paths_efl.cc index eba314d..27efdf2 100644 --- a/tizen_src/chromium_impl/content/common/paths_efl.cc +++ b/tizen_src/chromium_impl/content/common/paths_efl.cc @@ -29,8 +29,8 @@ const base::FilePath::CharType kApplicationCacheDir[] = FILE_PATH_LITERAL("cache #if !defined(EWK_BRINGUP) // FIXME: m67 bringup // FIXME: EWK_BRINGUP definition should be removed. const base::FilePath::CharType kLocalePath[] = FILE_PATH_LITERAL(LOCALE_DIR); -const base::FilePath::CharType kEdjePath[] = FILE_PATH_LITERAL(EDJE_DIR); #endif // !defined(EWK_BRINGUP) +const base::FilePath::CharType kEdjePath[] = FILE_PATH_LITERAL(EDJE_DIR); const base::FilePath::CharType kApplicationName[] = FILE_PATH_LITERAL("chromium-efl"); const base::FilePath::CharType kApplicationDataBaseDir[] = FILE_PATH_LITERAL("db"); @@ -158,10 +158,7 @@ bool PathProvider(int key, base::FilePath* result) { #endif // !defined(EWK_BRINGUP) return true; case EDJE_RESOURCE_DIR: -#if !defined(EWK_BRINGUP) // FIXME: m67 bringup - // FIXME: EWK_BRINGUP definition should be removed. *result = base::FilePath(kEdjePath); -#endif // !defined(EWK_BRINGUP) return true; case DIR_DOWNLOADS: *result = GetDirDownloads(); -- 2.7.4