[Tizen] Remove logs of Idler Hotfix 24/222124/1
authorSeungho, Baek <sbsh.baek@samsung.com>
Fri, 10 Jan 2020 02:15:25 +0000 (11:15 +0900)
committerSeungho, Baek <sbsh.baek@samsung.com>
Fri, 10 Jan 2020 02:15:25 +0000 (11:15 +0900)
Change-Id: Ia796d00e5729b2a5392192a083b098de149d3817
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
dali/internal/adaptor/common/adaptor-impl.cpp
dali/internal/adaptor/common/adaptor-impl.h

index f3bdf48..1fc3f4e 100755 (executable)
@@ -283,10 +283,6 @@ void Adaptor::Initialize( GraphicsFactory& graphicsFactory, Dali::Configuration:
   {
     Integration::SetPinchGestureMinimumDistance( mEnvironmentOptions->GetMinimumPinchDistance() );
   }
-  if( mEnvironmentOptions->GetLongPressMinimumHoldingTime() >= 0 )
-  {
-    Integration::SetLongPressMinimumHoldingTime( mEnvironmentOptions->GetLongPressMinimumHoldingTime() );
-  }
 
   // Set max texture size
   if( mEnvironmentOptions->GetMaxTextureSize() > 0 )
@@ -917,12 +913,6 @@ void Adaptor::RequestProcessEventsOnIdle( bool forceProcess )
   if( ( ! mNotificationOnIdleInstalled ) && ( RUNNING == mState || READY == mState || forceProcess ) )
   {
     mNotificationOnIdleInstalled = AddIdleEnterer( MakeCallback( this, &Adaptor::ProcessCoreEventsFromIdle ), forceProcess );
-    mNotificationOnIdleInstalledCnt++;
-    if( RUNNING == mState )
-    {
-      DALI_LOG_ERROR("gab_test mNotificationOnIdleInstalledCnt %d ", mNotificationOnIdleInstalledCnt);
-      mNotificationOnIdleInstalled = false;
-    }
   }
 }
 
@@ -1085,7 +1075,6 @@ bool Adaptor::ProcessCoreEventsFromIdle()
 
   // the idle handle automatically un-installs itself
   mNotificationOnIdleInstalled = false;
-  mNotificationOnIdleInstalledCnt--;
 
   return false;
 }
@@ -1161,8 +1150,7 @@ Adaptor::Adaptor(Dali::Integration::SceneHolder window, Dali::Adaptor& adaptor,
   mObjectProfiler( nullptr ),
   mSocketFactory(),
   mEnvironmentOptionsOwned( environmentOptions ? false : true /* If not provided then we own the object */ ),
-  mUseRemoteSurface( false ),
-  mNotificationOnIdleInstalledCnt( 0 )
+  mUseRemoteSurface( false )
 {
   DALI_ASSERT_ALWAYS( !IsAvailable() && "Cannot create more than one Adaptor per thread" );
   mWindows.insert( mWindows.begin(), &Dali::GetImplementation( window ) );
index 193c90f..c151865 100755 (executable)
@@ -675,7 +675,6 @@ private: // Data
   SocketFactory                         mSocketFactory;               ///< Socket factory
   const bool                            mEnvironmentOptionsOwned:1;   ///< Whether we own the EnvironmentOptions (and thus, need to delete it)
   bool                                  mUseRemoteSurface;            ///< whether the remoteSurface is used or not
-  int  mNotificationOnIdleInstalledCnt;
 
 public:
   inline static Adaptor& GetImplementation(Dali::Adaptor& adaptor) { return *adaptor.mImpl; }