From: Eunki, Hong Date: Tue, 19 Dec 2023 04:14:59 +0000 (+0900) Subject: Print ProcessorController name for debug X-Git-Tag: accepted/tizen/unified/20231228.165714~2^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F28%2F303028%2F2;p=platform%2Fcore%2Fuifw%2Fdali-csharp-binder.git Print ProcessorController name for debug Change-Id: I8ff0c0f511bafa29d0a398795e0f354ccaa62896 Signed-off-by: Eunki, Hong --- diff --git a/dali-csharp-binder/common/processor-controller.h b/dali-csharp-binder/common/processor-controller.h index 9939e67b..03724561 100644 --- a/dali-csharp-binder/common/processor-controller.h +++ b/dali-csharp-binder/common/processor-controller.h @@ -53,11 +53,6 @@ public: */ void RegisterProcess(); - /** - * @copydoc Dali::Integration::Processor::Process() - */ - void Process(bool postProcessor) override; - /** * @brief Set the callback to be executed when dali-core calls the overriden Process() api. * @param[in] callback, function to be called @@ -89,6 +84,20 @@ public: */ void Awake(); +protected: // Implementation of Processor + /** + * @copydoc Dali::Integration::Processor::Process() + */ + void Process(bool postProcessor) override; + + /** + * @copydoc Dali::Integration::Processor::GetProcessorName() + */ + std::string_view GetProcessorName() const override + { + return "ProcessorController"; + } + private: ProcessorControllerProcessCallback mHandler; ///< PreProcessHandler before Relayout