fixup! [M73 Dev][EFL] Attach MessagePump::Delegate to MessagePumpForUIEfl 75/207375/1
authorChandan Padhi <c.padhi@samsung.com>
Tue, 4 Jun 2019 05:11:56 +0000 (10:41 +0530)
committerChandan Padhi <c.padhi@samsung.com>
Tue, 4 Jun 2019 05:12:47 +0000 (10:42 +0530)
This commit fixes below compilation warning introduced by the parent patch.

In file included from ../base/message_loop/message_loop_impl.cc:33:
../tizen_src/chromium_impl/base/message_loop/message_pump_for_ui_efl.h:25:25:
warning: [chromium-style] Overriding method must be marked with 'override' or
'final'.  ~MessagePumpForUIEfl();
                    ^
                     override

Change-Id: I1969f20267e0facdc43661926562fdb7060828d4
Signed-off-by: Chandan Padhi <c.padhi@samsung.com>
tizen_src/chromium_impl/base/message_loop/message_pump_for_ui_efl.h

index 64768f5..66c2154 100644 (file)
@@ -22,7 +22,7 @@ typedef std::pair<MessagePumpForUIEfl*, Ecore_Timer*> TimerPair;
 class BASE_EXPORT MessagePumpForUIEfl : public base::MessagePump {
  public:
   MessagePumpForUIEfl();
-  ~MessagePumpForUIEfl();
+  ~MessagePumpForUIEfl() override;
 
   void Run(Delegate*) override;
   void Quit() override;