merge with master
[platform/framework/web/wrt-plugins-common.git] / src / plugin-loading / plugin_iframe_support.h
index ce5cd14..0c98768 100644 (file)
@@ -22,8 +22,8 @@
 #ifndef _WRTENGINE_SRC_PLUGINSERVICE_IFRAME_SUPPORT_H_
 #define _WRTENGINE_SRC_PLUGINSERVICE_IFRAME_SUPPORT_H_
 
-#include<list>
-#include<set>
+#include <list>
+#include <set>
 #include <Commons/JSObjectDeclaration.h>
 #include <Commons/JSObject.h>
 #include "javascript_interface.h"
@@ -53,12 +53,12 @@ class IframesSupport
     // used to find matching object from m_loadedIframes
     struct EqualToJSObjectPtr
     {
-        typedef JSObjectPtr     first_argument_type;
-        typedef JSObjectPtr     second_argument_type;
-        typedef bool            result_type;
+        typedef JSObjectPtr first_argument_type;
+        typedef JSObjectPtr second_argument_type;
+        typedef bool result_type;
 
         result_type operator()(const first_argument_type &s1,
-                const second_argument_type &s2) const
+                               const second_argument_type &s2) const
         {
             return (s1->getObject() == s2->getObject());
         }