Skip to content
  • kihong.kwon@samsung.com's avatar
    Add DeviceController base-class to remove duplication of DeviceXXXControler · 04f5a2e4
    kihong.kwon@samsung.com authored
    https://bugs.webkit.org/show_bug.cgi?id=96894
    
    Reviewed by Hajime Morita.
    
    Source/WebCore:
    
    Add DeviceController which is extracted from DeviceOrientationController to remove duplication.
    And soon-to-be-added DeviceMotionController and ProximityController.
    
    Covered by existing tests.
    
    * CMakeLists.txt:
    * GNUmakefile.list.am:
    * Target.pri:
    * WebCore.gypi:
    * WebCore.vcproj/WebCore.vcproj:
    * WebCore.xcodeproj/project.pbxproj:
    * dom/DeviceOrientationClient.h:
    * dom/DeviceOrientationController.cpp:
    Remove member functions to move to DeviceController.
    - addListener(), removeListener(), removeAllListeners(), isActive()
    (WebCore::DeviceOrientationController::DeviceOrientationController):
    (WebCore::DeviceOrientationController::didChangeDeviceOrientation):
    (WebCore::DeviceOrientationController::client):
    (WebCore::DeviceOrientationController::hasLastData):
    (WebCore::DeviceOrientationController::getLastEvent):
    (WebCore::DeviceOrientationController::from):
    (WebCore):
    * dom/DeviceOrientationController.h:
    (WebCore):
    (WebCore::DeviceOrientationController::~DeviceOrientationController):
    (DeviceOrientationController):
    * dom/Document.cpp:
    Remove suspendEventsForAllListeners() and resumeEventsForAllListeners() function calls.
    These calls can be made by checking activeDOMObjectsAreSuspended() and activeDOMObjectsAreStopped() before dispatchEvent.
    (WebCore::Document::suspendActiveDOMObjects):
    (WebCore::Document::resumeActiveDOMObjects):
    * loader/EmptyClients.h:
    (EmptyDeviceClient):
    (WebCore::EmptyDeviceClient::startUpdating):
    (WebCore::EmptyDeviceClient::stopUpdating):
    (WebCore):
    * page/DOMWindow.cpp:
    (WebCore::DOMWindow::addEventListener):
    (WebCore::DOMWindow::removeEventListener):
    (WebCore::DOMWindow::removeAllEventListeners):
    * page/DeviceClient.h: Added.
    (WebCore):
    (DeviceClient):
    (WebCore::DeviceClient::~DeviceClient):
    * page/DeviceController.cpp: Added.
    DeviceController has extracted functions from DeviceOrientationController and DeviceMotionController.
    - addDeviceEventListener(), removeDeviceEventlistener(), removeAllDeviceEventListeners(), dispatchDeviceEvent()
    All kind of device event controller which has DeviceClient can be inherited from DeviceController.
    (WebCore):
    (WebCore::DeviceController::DeviceController):
    (WebCore::DeviceController::addDeviceEventListener):
    (WebCore::DeviceController::removeDeviceEventListener):
    (WebCore::DeviceController::removeAllDeviceEventListeners):
    (WebCore::DeviceController::dispatchDeviceEvent):
    (WebCore::DeviceController::fireDeviceEvent):
    * page/DeviceController.h: Added.
    (WebCore):
    (DeviceController):
    (WebCore::DeviceController::~DeviceController):
    (WebCore::DeviceController::isActive):
    (WebCore::DeviceController::client):
    (WebCore::DeviceController::hasLastData):
    (WebCore::DeviceController::getLastEvent):
    
    Source/WebKit/qt:
    
    Change client() to deviceOrientationClient() to get DeviceOrientationClient*.
    
    * WebCoreSupport/DumpRenderTreeSupportQt.cpp:
    (DumpRenderTreeSupportQt::setMockDeviceOrientation):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@134918 268f45cc-cd09-0410-ab3c-d52691b4dbfc
    04f5a2e4