projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a22565
)
DeInitilize elm during app exit
97/193897/1
author
prathmesh.m
<prathmesh.m@samsung.com>
Tue, 27 Nov 2018 09:35:27 +0000
(15:05 +0530)
committer
prathmesh.m
<prathmesh.m@samsung.com>
Tue, 27 Nov 2018 09:35:27 +0000
(15:05 +0530)
- Deinit elm as its no more required
Change-Id: Ie432f0c479bdec4fcb5ef1bc5b6f12bdb4decb68
Signed-off-by: prathmesh.m <prathmesh.m@samsung.com>
atom/browser/browser.cc
patch
|
blob
|
history
diff --git
a/atom/browser/browser.cc
b/atom/browser/browser.cc
index d429a0a261a25abe6ac5c501ab11438e7871410f..1e0d82d2ccd78f613a46e45ec5e8e39abed1d69c 100644
(file)
--- a/
atom/browser/browser.cc
+++ b/
atom/browser/browser.cc
@@
-253,6
+253,12
@@
void Browser::OnWindowAllClosed() {
for (BrowserObserver& observer : observers_)
observer.OnWindowAllClosed();
}
+#if defined(OS_TIZEN)
+ // This is called during app exit.
+ // Deinit elm as its no more required.
+ elm_exit();
+ elm_shutdown();
+#endif
}
#if defined(OS_TIZEN)