Revert "[Tizen] Implement WebEngine Interface"
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / windows / timer-impl-win.cpp
index dd8a0b9..e7e4438 100755 (executable)
 // CLASS HEADER
 #include <dali/internal/system/common/timer-impl.h>
 
-// EXTERNAL INCLUDES
 // Ecore is littered with C style cast
 #pragma GCC diagnostic push
 #pragma GCC diagnostic ignored "-Wold-style-cast"
-#include <Win32WindowSystem.h>
+
+// INTERNAL INCLUDES
+#include <dali/internal/window-system/windows/platform-implement-win.h>
 
 namespace Dali
 {
@@ -84,7 +85,7 @@ void Timer::Start()
 {
   if( 0 > mImpl->mId )
   {
-    mImpl->mId = Win32WindowSystem::SetTimer( mImpl->mInterval, TimerSourceFunc, this );
+    mImpl->mId = WindowsPlatformImplement::SetTimer( mImpl->mInterval, TimerSourceFunc, this );
   }
 }
 
@@ -92,7 +93,7 @@ void Timer::Stop()
 {
   if( 0 <= mImpl->mId )
   {
-    Win32WindowSystem::KillTimer( mImpl->mId );
+    WindowsPlatformImplement::KillTimer( mImpl->mId );
     mImpl->mId = -1;
   }
 }