X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Fdali-toolkit-test-utils%2Ftoolkit-adaptor.cpp;h=8f3095fd877afd93d20d8f64c1c9b745446d486d;hb=6fcd54cf99718c78d77cb8a9bf836059111afe16;hp=1fe86c3711bd3f86f8ecac1bf334872b0e3c077e;hpb=1fe6286be11679b2f5c14a60636ae9cb486570e4;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-adaptor.cpp b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-adaptor.cpp index 1fe86c3..8f3095f 100644 --- a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-adaptor.cpp +++ b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-adaptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Samsung Electronics Co., Ltd. + * Copyright (c) 2021 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -172,16 +172,16 @@ void Adaptor::RemoveWindow( Internal::Adaptor::SceneHolder* window ) } } -void Adaptor::RegisterProcessor( Integration::Processor& processor ) +void Adaptor::RegisterProcessor( Integration::Processor& processor, bool postProcessor ) { Integration::Core& core = mTestApplication->GetCore(); - core.RegisterProcessor( processor ); + core.RegisterProcessor( processor, postProcessor ); } -void Adaptor::UnregisterProcessor( Integration::Processor& processor ) +void Adaptor::UnregisterProcessor( Integration::Processor& processor, bool postProcessor ) { Integration::Core& core = mTestApplication->GetCore(); - core.UnregisterProcessor( processor ); + core.UnregisterProcessor( processor, postProcessor ); } void Adaptor::SetApplication( Dali::TestApplication& testApplication ) @@ -368,14 +368,14 @@ const LogFactoryInterface& Adaptor::GetLogFactory() return *gLogFactory; } -void Adaptor::RegisterProcessor( Integration::Processor& processor ) +void Adaptor::RegisterProcessor( Integration::Processor& processor, bool postProcessor) { - mImpl->RegisterProcessor( processor ); + mImpl->RegisterProcessor( processor, postProcessor ); } -void Adaptor::UnregisterProcessor( Integration::Processor& processor ) +void Adaptor::UnregisterProcessor( Integration::Processor& processor, bool postProcessor) { - mImpl->UnregisterProcessor( processor ); + mImpl->UnregisterProcessor( processor, postProcessor ); } } // namespace Dali