Adjust EWK notifications implementation to dev/m42 changes.
authorPiotr Tworek <p.tworek@samsung.com>
Mon, 27 Apr 2015 11:59:44 +0000 (13:59 +0200)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
During the weekend dev/m42 branch gained some more notification related
patches which broke EWK. This patch aims to make them compatible once
again.

Change-Id: I586f73747cbbf796884270ca10a5cc243c801628
Signed-off-by: Piotr Tworek <p.tworek@samsung.com>
tizen_src/ewk/efl_integration/browser/notification/notification_controller_efl.cc
tizen_src/ewk/efl_integration/browser/notification/notification_controller_efl.h

index 3d82536..b12a944 100644 (file)
@@ -146,7 +146,7 @@ void NotificationControllerEfl:: DisplayPersistentNotification(
 
 void NotificationControllerEfl::ClosePersistentNotification(
     BrowserContext* browser_context,
-    const std::string& persistent_notification_id) {
+    int64_t persistent_notification_id) {
   NOTIMPLEMENTED();
 }
 
index a8d2782..0a851d5 100644 (file)
@@ -119,7 +119,7 @@ class NotificationControllerEfl: public PlatformNotificationService {
   // |persistent_notification_id|. This method must be called on the UI thread.
   void ClosePersistentNotification(
       BrowserContext* browser_context,
-      const std::string& persistent_notification_id) override;
+      int64_t persistent_notification_id) override;
 
 
  private: