fixup! [Bringup] Guard non implemented parts in init.js 92/155992/3
authorSanghyup Lee <sh53.lee@samsung.com>
Wed, 18 Oct 2017 08:56:32 +0000 (17:56 +0900)
committerSanghyup Lee <sh53.lee@samsung.com>
Wed, 18 Oct 2017 09:03:55 +0000 (09:03 +0000)
This patch loads chrome-extension.

Change-Id: Ie1fce7505be27c41bd2974616ff60c8b158a4f52
Signed-off-by: Sanghyup Lee <sh53.lee@samsung.com>
lib/browser/init.js

index e482456..b9fe447 100644 (file)
@@ -146,14 +146,15 @@ if (packageJson.v8Flags != null) {
 }
 
 // Set the user path according to application's name.
-// FIXME: This is guard for bringup.
-//app.setPath('userData', path.join(app.getPath('appData'), app.getName()))
-//app.setPath('userCache', path.join(app.getPath('cache'), app.getName()))
+// FIXME: use app.getPath('cache') instead of app.getPath('appData').
+//        This is for bringup.
+// app.setPath('userData', path.join(app.getPath('appData'), app.getName()))
+app.setPath('userData', path.join(app.getPath('cache'), app.getName()))
+app.setPath('userCache', path.join(app.getPath('cache'), app.getName()))
 app.setAppPath(packagePath)
 
 // Load the chrome extension support.
-// FIXME: This is guard for bringup.
-//require('./chrome-extension')
+require('./chrome-extension')
 
 // Load internal desktop-capturer module.
 // FIXME: This is guard for bringup.