[Bringup] Guard non implemented parts in init.js 29/145929/8
authorYoungsoo Choi <kenshin.choi@samsung.com>
Thu, 24 Aug 2017 07:19:31 +0000 (16:19 +0900)
committerSungsik Han <ss440.han@samsung.com>
Tue, 12 Sep 2017 04:59:02 +0000 (04:59 +0000)
This guards non implemented parts in init.js.
It needs to be implemented later.

Change-Id: Iedcc501a792ca73f8166ed0f2e7fa175f9ceac4f
Signed-off-by: Youngsoo Choi <kenshin.choi@samsung.com>
lib/browser/init.js

index 5e4fbf28199ac9d35ec52342186c06ff8faf0702..e4824566bcc52c66001984e9f276eaa72e440b6b 100644 (file)
@@ -146,15 +146,18 @@ if (packageJson.v8Flags != null) {
 }
 
 // Set the user path according to application's name.
-app.setPath('userData', path.join(app.getPath('appData'), app.getName()))
-app.setPath('userCache', path.join(app.getPath('cache'), app.getName()))
+// 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()))
 app.setAppPath(packagePath)
 
 // Load the chrome extension support.
-require('./chrome-extension')
+// FIXME: This is guard for bringup.
+//require('./chrome-extension')
 
 // Load internal desktop-capturer module.
-require('./desktop-capturer')
+// FIXME: This is guard for bringup.
+//require('./desktop-capturer')
 
 // Load protocol module to ensure it is populated on app ready
 require('./api/protocol')