[M47_2526] Chromium upversion to m47_2526 branch
[platform/framework/web/chromium-efl.git] / tizen_src / ewk / efl_integration / private / ewk_back_forward_list_private.cc
index b6106fd..9bba008 100644 (file)
@@ -12,9 +12,13 @@ _Ewk_Back_Forward_List::_Ewk_Back_Forward_List(content::NavigationController &co
     : navigation_controller_(controller) {
   notification_registrar_.Add(this, content::NOTIFICATION_NAV_ENTRY_CHANGED,
       content::NotificationService::AllBrowserContextsAndSources());
+#if !defined(EWK_BRINGUP)
+// [M47_2526] content::NOTIFICATION_WEB_CONTENTS_TITLE_UPDATED was removed
+//            FIXME: http://web.sec.samsung.net/bugzilla/show_bug.cgi?id=14512
   notification_registrar_.Add(this,
       content::NOTIFICATION_WEB_CONTENTS_TITLE_UPDATED,
       content::NotificationService::AllBrowserContextsAndSources());
+#endif
   notification_registrar_.Add(this, content::NOTIFICATION_NAV_ENTRY_COMMITTED,
       content::NotificationService::AllBrowserContextsAndSources());
 }
@@ -98,12 +102,16 @@ void _Ewk_Back_Forward_List::Observe(int type,
       UpdateItemWithEntry(entry);
       break;
     }
+#if !defined(EWK_BRINGUP)
+// [M47_2526] content::NOTIFICATION_WEB_CONTENTS_TITLE_UPDATED was removed
+//            FIXME: http://web.sec.samsung.net/bugzilla/show_bug.cgi?id=14512
     case content::NOTIFICATION_WEB_CONTENTS_TITLE_UPDATED: {
       content::Details<std::pair<content::NavigationEntry*, bool> > d = details;
       const content::NavigationEntry* entry = d->first;
       UpdateItemWithEntry(entry);
       break;
     }
+#endif
     default: {
       return;
     }