cleanup
[profile/tv/apps/native/screen-reader.git] / src / navigator.c
index b9c2360..cf3c3a5 100644 (file)
@@ -9,9 +9,6 @@
 #include "object_cache.h"
 #include "flat_navi.h"
 #include "app_tracker.h"
-#include "smart_notification.h"
-#include "screen_reader_system.h"
-#include "screen_reader_haptic.h"
 
 #define QUICKPANEL_DOWN TRUE
 #define QUICKPANEL_UP FALSE
@@ -94,7 +91,6 @@ static void _focus_next(void)
      {
         flat_navi_context_line_first(context);
         obj = flat_navi_context_first(context);
-        smart_notification(FOCUS_CHAIN_END_NOTIFICATION_EVENT, 0, 0);
      }
    if (obj)
      _current_highlight_object_set(obj);
@@ -123,7 +119,6 @@ static void _focus_prev(void)
      {
         flat_navi_context_line_last(context);
         obj = flat_navi_context_last(context);
-        smart_notification(FOCUS_CHAIN_END_NOTIFICATION_EVENT, 0, 0);
      }
    if (obj)
      _current_highlight_object_set(obj);
@@ -205,8 +200,6 @@ void navigator_init(void)
    window_tracker_register(on_window_activate, NULL);
    window_tracker_active_window_request();
    app_tracker_init();
-   smart_notification_init();
-   system_notifications_init();
    keyboard_tracker_init();
    keyboard_tracker_register(kb_tracker, NULL);
 }
@@ -221,7 +214,5 @@ void navigator_shutdown(void)
    object_cache_shutdown();
    app_tracker_shutdown();
    window_tracker_shutdown();
-   smart_notification_shutdown();
-   system_notifications_shutdown();
    keyboard_tracker_shutdown();
 }