X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=adaptors%2Fcommon%2Fframework.h;h=6037d57ec15f63a914def71e266564841651fac3;hb=f26a828765b20d4d53a8b899b127cc75bab9f9ff;hp=7dcbdbc0e458192f656f96e7fcd25054fa55d772;hpb=ae37a5866286d97378c956ff9b55efb0e8c565e8;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/adaptors/common/framework.h b/adaptors/common/framework.h index 7dcbdbc..6037d57 100644 --- a/adaptors/common/framework.h +++ b/adaptors/common/framework.h @@ -20,7 +20,6 @@ // EXTERNAL INCLUDES #include -#include #include #ifdef APPCORE_WATCH_AVAILABLE #include "wearable/watch/watch-application.h" @@ -52,8 +51,7 @@ public: enum Type { NORMAL, ///< normal appFramework - WATCH, ///< watch appFramework - WIDGET ///< widget appFramework + WATCH ///< watch appFramework }; /** @@ -114,22 +112,22 @@ public: /** * Invoked when the language of the device is changed. */ - virtual void OnLanguageChanged( const std::string& language ) {} + virtual void OnLanguageChanged() {} /** * Invoked when the region is changed. */ - virtual void OnRegionChanged( const std::string& region ) {} + virtual void OnRegionChanged() {} /** * Invoked when the battery level of the device is low. */ - virtual void OnBatteryLow( Dali::DevelApplication::BatteryStatus::Type status ) {} + virtual void OnBatteryLow() {} /** * Invoked when the memory level of the device is low. */ - virtual void OnMemoryLow( Dali::DevelApplication::MemoryStatus::Type status ) {} + virtual void OnMemoryLow() {} }; public: