merge with master
[framework/web/wrt-plugins-common.git] / src / CommonsJavaScript / Utils.h
index ae59476..d8b8f95 100644 (file)
@@ -36,7 +36,7 @@ namespace CommonsJavaScript {
  */
 template<typename EventType>
 JSObjectRef makePendingOperation(JSContextRef context,
-        const DPL::SharedPtr<EventType>& event)
+                                 const DPL::SharedPtr<EventType>& event)
 {
     Commons::IEventControllerPtr eventController =
         DPL::StaticPointerCast<Commons::IEventController>(event);
@@ -48,10 +48,10 @@ JSObjectRef makePendingOperation(JSContextRef context,
 
 template<typename EventType>
 JSObjectRef makeExtCancelSupportedPendingOperation(
-        JSContextRef context,
-        const DPL::SharedPtr<EventType>& event,
-        const DPL::SharedPtr<Commons::IExternEventCanceler<EventType> >&
-        cancel)
+    JSContextRef context,
+    const DPL::SharedPtr<EventType>& event,
+    const DPL::SharedPtr<Commons::IExternEventCanceler<EventType> >&
+    cancel)
 {
     IJSPendingOperationPrivateObject* pendingOperation =
         new IJSExtCancelPendingOperationPrivateObject<EventType>(event, cancel);