Add overlaod for StepCreateIcons::GetAppTypeForIcons 17/57017/1
authorTomasz Iwanek <t.iwanek@samsung.com>
Thu, 14 Jan 2016 10:31:51 +0000 (11:31 +0100)
committerTomasz Iwanek <t.iwanek@samsung.com>
Thu, 14 Jan 2016 10:32:00 +0000 (11:32 +0100)
Needs to be submitted with:
 - https://review.tizen.org/gerrit/#/c/56920

Change-Id: Ic0f5a18513b4157df06e5c411011ef64f283127e

src/wgt/step/step_wgt_create_icons.cc
src/wgt/step/step_wgt_create_icons.h

index f62588c..936e3a8 100644 (file)
@@ -17,6 +17,10 @@ boost::filesystem::path StepWgtCreateIcons::GetIconRoot() const {
   return context_->pkg_path.get() / kResWgt;
 }
 
+std::string StepWgtCreateIcons::GetAppTypeForIcons() const {
+  return "webapp";
+}
+
 }  // namespace filesystem
 }  // namespace wgt
 
index 46c3a8c..ee71942 100644 (file)
@@ -9,6 +9,8 @@
 
 #include <common/step/step_create_icons.h>
 
+#include <string>
+
 namespace wgt {
 namespace filesystem {
 
@@ -27,6 +29,13 @@ class StepWgtCreateIcons
    */
   boost::filesystem::path GetIconRoot() const override;
 
+  /**
+   * \brief Return type of application for which icons should be created
+   *
+   * \return application type
+   */
+  std::string GetAppTypeForIcons() const override;
+
   SCOPE_LOG_TAG(WgtCreateIcons)
 };