[Tizen] Print ProcessorController name for debug 21/303121/1
authorEunki, Hong <eunkiki.hong@samsung.com>
Tue, 19 Dec 2023 04:14:59 +0000 (13:14 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Wed, 20 Dec 2023 06:17:28 +0000 (15:17 +0900)
Change-Id: I8ff0c0f511bafa29d0a398795e0f354ccaa62896
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dali-csharp-binder/common/processor-controller.h

index 9939e67..0372456 100644 (file)
@@ -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