Changeset 121679 in webkit


Ignore:
Timestamp:
Jul 2, 2012 8:21:35 AM (12 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

[EFL] Rename NotificationPresenterEfl with NotificationClientEfl
https://bugs.webkit.org/show_bug.cgi?id=90370

Reviewed by Csaba Osztrogonác.

Source/WebKit:

Bug 80488 renamed NotificationPresenter with NotificationClient. So, EFL port needs to adjust
it as well.

  • PlatformEfl.cmake:

Source/WebKit/efl:

Bug 80488 renamed NotificationPresenter with NotificationClient. So, EFL port needs to adjust it as well.

  • WebCoreSupport/ChromeClientEfl.cpp:
  • WebCoreSupport/NotificationClientEfl.cpp: Renamed from Source/WebKit/efl/WebCoreSupport/NotificationPresenterClientEfl.cpp.

(WebCore):
(WebCore::NotificationClientEfl::NotificationClientEfl):
(WebCore::NotificationClientEfl::~NotificationClientEfl):
(WebCore::NotificationClientEfl::show):
(WebCore::NotificationClientEfl::cancel):
(WebCore::NotificationClientEfl::notificationObjectDestroyed):
(WebCore::NotificationClientEfl::notificationControllerDestroyed):
(WebCore::NotificationClientEfl::requestPermission):
(WebCore::NotificationClientEfl::checkPermission):
(WebCore::NotificationClientEfl::cancelRequestsForPermission):

  • WebCoreSupport/NotificationClientEfl.h: Renamed from Source/WebKit/efl/WebCoreSupport/NotificationPresenterClientEfl.h.

(WebCore):
(NotificationClientEfl):

Location:
trunk/Source/WebKit
Files:
4 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r121608 r121679  
     12012-07-02  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        [EFL] Rename NotificationPresenterEfl with NotificationClientEfl
     4        https://bugs.webkit.org/show_bug.cgi?id=90370
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Bug 80488 renamed NotificationPresenter with NotificationClient. So, EFL port needs to adjust
     9        it as well.
     10
     11        * PlatformEfl.cmake:
     12
    1132012-06-29  Krzysztof Czech  <k.czech@samsung.com>
    214
  • trunk/Source/WebKit/PlatformEfl.cmake

    r121608 r121679  
    104104    efl/WebCoreSupport/StorageTrackerClientEfl.cpp
    105105    efl/WebCoreSupport/InspectorClientEfl.cpp
    106     efl/WebCoreSupport/NotificationPresenterClientEfl.cpp
     106    efl/WebCoreSupport/NotificationClientEfl.cpp
    107107    efl/WebCoreSupport/PageClientEfl.cpp
    108108    efl/WebCoreSupport/PlatformStrategiesEfl.cpp
  • trunk/Source/WebKit/efl/ChangeLog

    r121608 r121679  
     12012-07-02  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        [EFL] Rename NotificationPresenterEfl with NotificationClientEfl
     4        https://bugs.webkit.org/show_bug.cgi?id=90370
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Bug 80488 renamed NotificationPresenter with NotificationClient. So, EFL port needs to adjust it as well.
     9
     10        * WebCoreSupport/ChromeClientEfl.cpp:
     11        * WebCoreSupport/NotificationClientEfl.cpp: Renamed from Source/WebKit/efl/WebCoreSupport/NotificationPresenterClientEfl.cpp.
     12        (WebCore):
     13        (WebCore::NotificationClientEfl::NotificationClientEfl):
     14        (WebCore::NotificationClientEfl::~NotificationClientEfl):
     15        (WebCore::NotificationClientEfl::show):
     16        (WebCore::NotificationClientEfl::cancel):
     17        (WebCore::NotificationClientEfl::notificationObjectDestroyed):
     18        (WebCore::NotificationClientEfl::notificationControllerDestroyed):
     19        (WebCore::NotificationClientEfl::requestPermission):
     20        (WebCore::NotificationClientEfl::checkPermission):
     21        (WebCore::NotificationClientEfl::cancelRequestsForPermission):
     22        * WebCoreSupport/NotificationClientEfl.h: Renamed from Source/WebKit/efl/WebCoreSupport/NotificationPresenterClientEfl.h.
     23        (WebCore):
     24        (NotificationClientEfl):
     25
    1262012-06-29  Krzysztof Czech  <k.czech@samsung.com>, Tomasz Morawski <t.morawski@samsung.com>
    227
  • trunk/Source/WebKit/efl/WebCoreSupport/ChromeClientEfl.cpp

    r120369 r121679  
    6363
    6464#if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS)
    65 #include "NotificationPresenterClientEfl.h"
     65#include "NotificationClientEfl.h"
    6666#endif
    6767
  • trunk/Source/WebKit/efl/WebCoreSupport/NotificationClientEfl.cpp

    r121678 r121679  
    1919
    2020#include "config.h"
    21 #include "NotificationPresenterClientEfl.h"
     21#include "NotificationClientEfl.h"
    2222
    2323#if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS)
     
    2626namespace WebCore {
    2727
    28 NotificationPresenterClientEfl::NotificationPresenterClientEfl()
     28NotificationClientEfl::NotificationClientEfl()
    2929{
    3030}
    3131
    32 NotificationPresenterClientEfl::~NotificationPresenterClientEfl()
     32NotificationClientEfl::~NotificationClientEfl()
    3333{
    3434}
    3535
    36 bool NotificationPresenterClientEfl::show(Notification* notification)
     36bool NotificationClientEfl::show(Notification* notification)
    3737{
    3838    notImplemented();
     
    4040}
    4141
    42 void NotificationPresenterClientEfl::cancel(Notification* notification)
     42void NotificationClientEfl::cancel(Notification* notification)
    4343{
    4444    notImplemented();
    4545}
    4646
    47 void NotificationPresenterClientEfl::notificationObjectDestroyed(Notification* notification)
     47void NotificationClientEfl::notificationObjectDestroyed(Notification* notification)
    4848{
    4949    notImplemented();
    5050}
    5151
    52 void NotificationPresenterClientEfl::notificationControllerDestroyed()
     52void NotificationClientEfl::notificationControllerDestroyed()
    5353{
    5454    notImplemented();
    5555}
    5656
    57 void NotificationPresenterClientEfl::requestPermission(ScriptExecutionContext* context, PassRefPtr<VoidCallback> callback)
     57void NotificationClientEfl::requestPermission(ScriptExecutionContext* context, PassRefPtr<VoidCallback> callback)
    5858{
    5959    notImplemented();
    6060}
    6161
    62 NotificationPresenter::Permission NotificationPresenterClientEfl::checkPermission(ScriptExecutionContext* context)
     62NotificationClient::Permission NotificationClientEfl::checkPermission(ScriptExecutionContext* context)
    6363{
    6464    notImplemented();
     
    6666}
    6767
    68 void NotificationPresenterClientEfl::cancelRequestsForPermission(ScriptExecutionContext* context)
     68void NotificationClientEfl::cancelRequestsForPermission(ScriptExecutionContext* context)
    6969{
    7070    notImplemented();
  • trunk/Source/WebKit/efl/WebCoreSupport/NotificationClientEfl.h

    r121678 r121679  
    1818 */
    1919
    20 #ifndef NotificationPresenterClientEfl_h
    21 #define NotificationPresenterClientEfl_h
     20#ifndef NotificationClientEfl_h
     21#define NotificationClientEfl_h
    2222
    2323#if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS)
    2424#include "Notification.h"
    25 #include "NotificationPresenter.h"
     25#include "NotificationClient.h"
    2626
    2727namespace WebCore {
    2828
    29 class NotificationPresenterClientEfl : public NotificationPresenter {
     29class NotificationClientEfl : public NotificationClient {
    3030
    3131public:
    32     NotificationPresenterClientEfl();
    33     ~NotificationPresenterClientEfl();
     32    NotificationClientEfl();
     33    ~NotificationClientEfl();
    3434
    3535    virtual bool show(Notification*);
     
    3838    virtual void notificationControllerDestroyed();
    3939    virtual void requestPermission(ScriptExecutionContext*, PassRefPtr<VoidCallback>);
    40     virtual NotificationPresenter::Permission checkPermission(ScriptExecutionContext*);
     40    virtual NotificationClient::Permission checkPermission(ScriptExecutionContext*);
    4141    virtual void cancelRequestsForPermission(ScriptExecutionContext*);
    4242};
     
    4444}
    4545#endif
    46 #endif // NotificationPresenterClientEfl_h
     46#endif // NotificationClientEfl_h
Note: See TracChangeset for help on using the changeset viewer.