Remove aul.h from public header 99/85799/1 accepted/tizen/common/20160830.150013 accepted/tizen/ivi/20160830.061239 accepted/tizen/mobile/20160830.061108 accepted/tizen/tv/20160830.061151 accepted/tizen/wearable/20160830.061234 submit/tizen/20160829.073018
authorHyunho Kang <hhstark.kang@samsung.com>
Mon, 29 Aug 2016 06:50:46 +0000 (15:50 +0900)
committerHyunho Kang <hhstark.kang@samsung.com>
Mon, 29 Aug 2016 06:51:30 +0000 (15:51 +0900)
Change-Id: I07fe7724ecaccfa45f3ebd24b2aada140cdc9806
Signed-off-by: Hyunho Kang <hhstark.kang@samsung.com>
include/widget_service.h

index 90562886c53c94f029d6780ddd7a5b8ce96ffb50..26ff0eb0dcf07e2a05902feff88f5f204b055cb1 100644 (file)
@@ -19,7 +19,6 @@
 
 #include <tizen.h>
 #include <bundle.h>
-#include <aul.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -488,11 +487,11 @@ extern int widget_service_get_widget_instance_list(const char *widget_id, widget
  * @see widget_lifecycle_event_cb
  */
 typedef enum widget_lifecycle_event {
-       WIDGET_LIFE_CYCLE_EVENT_APP_DEAD = AUL_WIDGET_LIFE_CYCLE_EVENT_APP_DEAD,
-       WIDGET_LIFE_CYCLE_EVENT_CREATE  = AUL_WIDGET_LIFE_CYCLE_EVENT_CREATE,    /**< The widget is created */
-       WIDGET_LIFE_CYCLE_EVENT_DESTROY = AUL_WIDGET_LIFE_CYCLE_EVENT_DESTROY,    /**< The widget is destroyed */
-       WIDGET_LIFE_CYCLE_EVENT_PAUSE   = AUL_WIDGET_LIFE_CYCLE_EVENT_PAUSE,    /**< The widget is paused */
-       WIDGET_LIFE_CYCLE_EVENT_RESUME  = AUL_WIDGET_LIFE_CYCLE_EVENT_RESUME,    /**< The widget is resumed */
+       WIDGET_LIFE_CYCLE_EVENT_APP_DEAD = 0,
+       WIDGET_LIFE_CYCLE_EVENT_CREATE  = 1,    /**< The widget is created */
+       WIDGET_LIFE_CYCLE_EVENT_DESTROY = 2,    /**< The widget is destroyed */
+       WIDGET_LIFE_CYCLE_EVENT_PAUSE   = 3,    /**< The widget is paused */
+       WIDGET_LIFE_CYCLE_EVENT_RESUME  = 4,    /**< The widget is resumed */
        WIDGET_LIFE_CYCLE_EVENT_MAX     = 5
 } widget_lifecycle_event_e;