Merge "[AT-SPI] Add resource id to window attribute" into devel/master
[platform/core/uifw/dali-adaptor.git] / dali / internal / window-system / tizen-wayland / ecore-wl2 / window-factory-ecore-wl2.cpp
index ab72e47..fd69c46 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -19,8 +19,8 @@
 #include <dali/internal/window-system/tizen-wayland/ecore-wl2/window-factory-ecore-wl2.h>
 
 // INTERNAL HEADERS
-#include <dali/internal/window-system/tizen-wayland/ecore-wl2/window-base-ecore-wl2.h>
 #include <dali/internal/window-system/common/display-utils.h>
+#include <dali/internal/window-system/tizen-wayland/ecore-wl2/window-base-ecore-wl2.h>
 
 namespace Dali
 {
@@ -28,17 +28,16 @@ namespace Internal
 {
 namespace Adaptor
 {
-
-std::unique_ptr< WindowBase > WindowFactoryEcoreWl2::CreateWindowBase( Dali::PositionSize positionSize, Any surface, bool isTransparent )
+std::unique_ptr<WindowBase> WindowFactoryEcoreWl2::CreateWindowBase(Dali::PositionSize positionSize, Any surface, bool isTransparent)
 {
-  return Utils::MakeUnique< WindowBaseEcoreWl2 >( positionSize, surface, isTransparent );
+  return Utils::MakeUnique<WindowBaseEcoreWl2>(positionSize, surface, isTransparent);
 }
 
 // this should be created from Window impl
-std::unique_ptr< WindowFactory > GetWindowFactory()
+std::unique_ptr<WindowFactory> GetWindowFactory()
 {
   // returns Window factory
-  return Utils::MakeUnique< WindowFactoryEcoreWl2 >();
+  return Utils::MakeUnique<WindowFactoryEcoreWl2>();
 }
 
 } // namespace Adaptor