[M69 Dev] Enable EdjePath for EdgeEffect 94/193094/1
authorChandan Padhi <c.padhi@samsung.com>
Wed, 14 Nov 2018 10:43:17 +0000 (02:43 -0800)
committerChandan Padhi <c.padhi@samsung.com>
Wed, 14 Nov 2018 10:57:22 +0000 (02:57 -0800)
This change is necessary to avoid CHECK failure during gesture handling.

Change-Id: Icfddb71d6fd8cb8284f33135784b8221e76413c4
Signed-off-by: Chandan Padhi <c.padhi@samsung.com>
tizen_src/chromium_impl/content/common/paths_efl.cc

index eba314d..27efdf2 100644 (file)
@@ -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();