Added missing includes (coding style requirement) 62/84562/3
authorPiotr Dabrowski <p.dabrowski2@samsung.com>
Fri, 19 Aug 2016 08:32:32 +0000 (10:32 +0200)
committerTomasz Iwanek <t.iwanek@samsung.com>
Fri, 2 Sep 2016 09:28:09 +0000 (02:28 -0700)
Change-Id: Icbb94e8d75447ee3a64d5f87999c55beac273130

14 files changed:
src/common/app_installer.h
src/common/external_storage.h
src/common/manifest_info/ime_info.h
src/common/plugins/plugin_manager.cc
src/common/plugins/plugin_manager.h
src/common/plugins/types/category_plugin.h
src/common/plugins/types/metadata_plugin.h
src/common/recovery_file.h
src/common/step/configuration/step_configure.cc
src/common/step/filesystem/step_delta_patch.cc
src/common/step/filesystem/step_enable_external_mount.cc
src/common/step/recovery/step_open_recovery_file.cc
src/common/utils/property.h
src/common/utils/subprocess.h

index 3191c83..bc2a653 100644 (file)
@@ -7,10 +7,13 @@
 #define COMMON_APP_INSTALLER_H_
 
 #include <manifest_parser/utils/logging.h>
+
 #include <boost/bind.hpp>
+
 #include <list>
 #include <memory>
 #include <string>
+#include <utility>
 
 #include "common/pkgmgr_interface.h"
 #include "common/pkgmgr_signal.h"
index ae8f7cb..e96bac6 100644 (file)
@@ -10,6 +10,7 @@
 #include <app2ext_interface.h>
 #include <sys/types.h>
 
+#include <memory>
 #include <string>
 #include <vector>
 
index fff7a04..ad00bd5 100644 (file)
@@ -6,6 +6,7 @@
 #define COMMON_MANIFEST_INFO_IME_INFO_H_
 
 #include <string>
+#include <utility>
 #include <vector>
 
 namespace common_installer {
index 2373df5..3c67f48 100644 (file)
@@ -8,6 +8,7 @@
 
 #include <algorithm>
 #include <string>
+#include <utility>
 #include <vector>
 
 #include "common/plugins/plugin_factory.h"
index f0d5a40..c3717c8 100644 (file)
@@ -8,6 +8,8 @@
 #include <boost/filesystem/path.hpp>
 
 #include <pkgmgrinfo_basic.h>
+
+#include <memory>
 #include <string>
 #include <vector>
 
index 833205f..0d4d5c7 100644 (file)
@@ -5,6 +5,7 @@
 #ifndef COMMON_PLUGINS_TYPES_CATEGORY_PLUGIN_H_
 #define COMMON_PLUGINS_TYPES_CATEGORY_PLUGIN_H_
 
+#include <memory>
 #include <string>
 
 #include "common/plugins/plugin.h"
index 7d09b50..778065a 100644 (file)
@@ -5,6 +5,7 @@
 #ifndef COMMON_PLUGINS_TYPES_METADATA_PLUGIN_H_
 #define COMMON_PLUGINS_TYPES_METADATA_PLUGIN_H_
 
+#include <memory>
 #include <string>
 
 #include "common/plugins/plugin.h"
index 6699d78..bf334ae 100644 (file)
@@ -8,6 +8,7 @@
 #include <boost/filesystem/path.hpp>
 
 #include <cstdio>
+#include <memory>
 #include <string>
 
 #include "common/request.h"
index 2e5a437..a2ffd8e 100644 (file)
@@ -12,7 +12,9 @@
 #include <unistd.h>
 #include <tzplatform_config.h>
 
+#include <memory>
 #include <string>
+#include <utility>
 
 #include "common/request.h"
 #include "common/utils/file_util.h"
index 8d2c7fa..23d480f 100644 (file)
@@ -14,6 +14,7 @@
 
 #include <algorithm>
 #include <cstdlib>
+#include <memory>
 
 #include "common/utils/file_util.h"
 #include "common/utils/glist_range.h"
index 13c2489..611f1dc 100644 (file)
@@ -4,6 +4,9 @@
 
 #include "common/step/filesystem/step_enable_external_mount.h"
 
+#include <memory>
+#include <utility>
+
 #include "common/external_mount.h"
 
 namespace common_installer {
index 38574fb..6e95b49 100644 (file)
@@ -5,6 +5,8 @@
 #include "common/step/recovery/step_open_recovery_file.h"
 
 #include <cassert>
+#include <memory>
+#include <utility>
 
 #include "common/recovery_file.h"
 
index 75abb08..647666c 100644 (file)
@@ -6,6 +6,7 @@
 #define COMMON_UTILS_PROPERTY_H_
 
 #include <memory>
+#include <utility>
 
 /** Template class for defining smart attributes.
  *
index b03b6df..4497d25 100644 (file)
@@ -6,6 +6,7 @@
 #define COMMON_UTILS_SUBPROCESS_H_
 
 #include <string>
+#include <utility>
 #include <vector>
 
 namespace common_installer {