Changeset 121898 in webkit


Ignore:
Timestamp:
Jul 5, 2012 3:54:01 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Change class name from NotificationClientEfl to NotificationPresenterClientEfl.
https://bugs.webkit.org/show_bug.cgi?id=90542

Patch by Kihong Kwon <kihong.kwon@samsung.com> on 2012-07-05
Reviewed by Kenneth Rohde Christiansen.

Source/WebKit:

NotificationClientEfl.cpp is changed to NotificationPresenterClientEfl.cpp
to be in line with other ports(qt, chromium, gtk).

  • PlatformEfl.cmake:

Source/WebKit/efl:

Change class name from NotificationClientEfl to NotificationPresenterClientEfl
to be in line with other ports.(qt, chromium, blackberry)

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

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

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

(WebCore):
(NotificationPresenterClientEfl):

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r121848 r121898  
     12012-07-05  Kihong Kwon  <kihong.kwon@samsung.com>
     2
     3        [EFL] Change class name from NotificationClientEfl to NotificationPresenterClientEfl.
     4        https://bugs.webkit.org/show_bug.cgi?id=90542
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        NotificationClientEfl.cpp is changed to NotificationPresenterClientEfl.cpp
     9        to be in line with other ports(qt, chromium, gtk).
     10
     11        * PlatformEfl.cmake:
     12
    1132012-07-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
    214
  • trunk/Source/WebKit/PlatformEfl.cmake

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

    r121707 r121898  
     12012-07-05  Kihong Kwon  <kihong.kwon@samsung.com>
     2
     3        [EFL] Change class name from NotificationClientEfl to NotificationPresenterClientEfl.
     4        https://bugs.webkit.org/show_bug.cgi?id=90542
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        Change class name from NotificationClientEfl to NotificationPresenterClientEfl
     9        to be in line with other ports.(qt, chromium, blackberry)
     10
     11        * WebCoreSupport/ChromeClientEfl.cpp:
     12        * WebCoreSupport/NotificationPresenterClientEfl.cpp: Renamed from Source/WebKit/efl/WebCoreSupport/NotificationClientEfl.cpp.
     13        (WebCore):
     14        (WebCore::NotificationPresenterClientEfl::NotificationPresenterClientEfl):
     15        (WebCore::NotificationPresenterClientEfl::~NotificationPresenterClientEfl):
     16        (WebCore::NotificationPresenterClientEfl::show):
     17        (WebCore::NotificationPresenterClientEfl::cancel):
     18        (WebCore::NotificationPresenterClientEfl::notificationObjectDestroyed):
     19        (WebCore::NotificationPresenterClientEfl::notificationControllerDestroyed):
     20        (WebCore::NotificationPresenterClientEfl::requestPermission):
     21        (WebCore::NotificationPresenterClientEfl::checkPermission):
     22        (WebCore::NotificationPresenterClientEfl::cancelRequestsForPermission):
     23        * WebCoreSupport/NotificationPresenterClientEfl.h: Renamed from Source/WebKit/efl/WebCoreSupport/NotificationClientEfl.h.
     24        (WebCore):
     25        (NotificationPresenterClientEfl):
     26
    1272012-07-02  Benjamin Poulain  <bpoulain@apple.com>
    228
  • trunk/Source/WebKit/efl/WebCoreSupport/ChromeClientEfl.cpp

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

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

    r121896 r121898  
    1818 */
    1919
    20 #ifndef NotificationClientEfl_h
    21 #define NotificationClientEfl_h
     20#ifndef NotificationPresenterClientEfl_h
     21#define NotificationPresenterClientEfl_h
    2222
    2323#if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS)
     
    2727namespace WebCore {
    2828
    29 class NotificationClientEfl : public NotificationClient {
     29class NotificationPresenterClientEfl : public NotificationClient {
    3030
    3131public:
    32     NotificationClientEfl();
    33     ~NotificationClientEfl();
     32    NotificationPresenterClientEfl();
     33    ~NotificationPresenterClientEfl();
    3434
    3535    virtual bool show(Notification*);
     
    4444}
    4545#endif
    46 #endif // NotificationClientEfl_h
     46#endif // NotificationPresenterClientEfl_h
Note: See TracChangeset for help on using the changeset viewer.