fixup! [M47_2526] Chromium upversion to m47_2526 branch
authorArnaud Renevier <a.renevier@samsung.com>
Tue, 27 Oct 2015 00:01:44 +0000 (17:01 -0700)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 07:55:23 +0000 (07:55 +0000)
Remove NOTIFICATION_WEB_CONTENTS_TITLE_UPDATED support. It has simply
been removed in chromium upstream.
https://codereview.chromium.org/1242953004

Bug: http://web.sec.samsung.net/bugzilla/show_bug.cgi?id=14512

Reviewed by: a1.gomes, sns.park

Change-Id: Ib37d057e3e7e929ea51e398414f0a08e0cd7ae5c
Signed-off-by: Arnaud Renevier <a.renevier@samsung.com>
tizen_src/ewk/efl_integration/private/ewk_back_forward_list_private.cc

index 9bba00880aac16cf920182144a275e7f963f8e68..f327fd1efe56da95073b68dc3d152554bac85751 100644 (file)
@@ -12,13 +12,6 @@ _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());
 }
@@ -102,16 +95,6 @@ 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;
     }