X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Fdali-toolkit-test-utils%2Ftest-render-controller.h;h=f7cafa4aa47943aa7f58d9578215aa8ecea69723;hb=6a219d0bbcfd016e24b5466d5fb1a666c92feae5;hp=83b64a62b991ecb02e99c66ea406b0e359aa9663;hpb=fa6279fb2830427d5ab569ca14e6ade1557ef2fa;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-render-controller.h b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-render-controller.h index 83b64a6..f7cafa4 100644 --- a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-render-controller.h +++ b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-render-controller.h @@ -1,37 +1,37 @@ -#ifndef __TEST_RENDER_CONTROLLER_H__ -#define __TEST_RENDER_CONTROLLER_H__ - -// -// Copyright (c) 2014 Samsung Electronics Co., Ltd. -// -// Licensed under the Flora License, Version 1.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://floralicense.org/license/ -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an AS IS BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// +#ifndef TEST_RENDER_CONTROLLER_H +#define TEST_RENDER_CONTROLLER_H + +/* + * Copyright (c) 2020 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ // INTERNAL INCLUDES -#include #include +#include namespace Dali { - -class DALI_IMPORT_API TestRenderController : public Dali::Integration::RenderController +class DALI_CORE_API TestRenderController : public Dali::Integration::RenderController { public: TestRenderController(); - ~TestRenderController(); + ~TestRenderController() override; - virtual void RequestUpdate(); - virtual void RequestProcessEventsOnIdle(); + void RequestUpdate(bool forceUpdate) override; + void RequestProcessEventsOnIdle(bool forceProcess) override; typedef enum { @@ -42,12 +42,11 @@ public: bool WasCalled(TestRenderControllerFuncEnum func); void Initialize(); - private: bool mRequestUpdateCalled; bool mRequestProcessEventsOnIdleCalled; }; -} // Dali +} // namespace Dali -#endif +#endif // TEST_RENDER_CONTROLLER_H