Add uid attribute of ThemeInfo
[platform/core/appfw/tizen-theme-manager.git] / src / theme_plugin / theme_parser.h
index 6d08b9b..b6b120b 100644 (file)
@@ -5,6 +5,8 @@
 #ifndef THEME_PLUGIN_THEME_PARSER_H_
 #define THEME_PLUGIN_THEME_PARSER_H_
 
+#include <sys/types.h>
+
 #include <memory>
 #include <string>
 
@@ -22,7 +24,8 @@ class ThemeParser {
   };
 
   explicit ThemeParser(const std::string& path) : path_(path) {}
-  loader::ThemeInfo Inflate(const std::string id, const std::string pkgid);
+  loader::ThemeInfo Inflate(const std::string id, const std::string pkgid,
+      uid_t uid);
   int Commit(ThemeOperation operation, const loader::ThemeInfo& theme);
 
  private: