Reorder the sequence of includes
authorsung-su.kim <sung-su.kim@samsung.com>
Fri, 2 Oct 2015 07:14:38 +0000 (16:14 +0900)
committersung-su.kim <sung-su.kim@samsung.com>
Mon, 5 Oct 2015 00:12:16 +0000 (09:12 +0900)
53 files changed:
common/app_control.cc [changed mode: 0755->0644]
common/app_control.h [changed mode: 0755->0644]
common/app_db.cc [changed mode: 0755->0644]
common/app_db.h [changed mode: 0755->0644]
common/app_db_sqlite.h [changed mode: 0755->0644]
common/application_data.cc [changed mode: 0755->0644]
common/application_data.h [changed mode: 0755->0644]
common/command_line.cc
common/command_line.h
common/common.gyp
common/dbus_client.cc
common/dbus_client.h
common/dbus_server.h
common/file_utils.cc
common/locale_manager.cc [changed mode: 0755->0644]
common/locale_manager.h [changed mode: 0755->0644]
common/profiler.h
common/resource_manager.h
common/string_utils.h
common/url.cc
extensions/extension/xwalk_extension.cc
extensions/extension/xwalk_extension_adapter.h
extensions/extension/xwalk_extension_instance.h
extensions/extension/xwalk_extension_process.cc
extensions/extension/xwalk_extension_server.cc
extensions/extension/xwalk_extension_server.h
extensions/extensions.gyp
extensions/internal/widget/widget_extension.cc
extensions/renderer/object_tools_module.cc
extensions/renderer/runtime_ipc_client.h
extensions/renderer/widget_module.cc
extensions/renderer/xwalk_extension_client.cc
extensions/renderer/xwalk_extension_client.h
extensions/renderer/xwalk_extension_module.cc
extensions/renderer/xwalk_extension_renderer_controller.cc
extensions/renderer/xwalk_extension_renderer_controller.h
extensions/renderer/xwalk_module_system.cc
extensions/renderer/xwalk_module_system.h
packaging/crosswalk-tizen.spec
runtime/browser/native_window.h [changed mode: 0755->0644]
runtime/browser/notification_manager.h [changed mode: 0755->0644]
runtime/browser/popup.cc [changed mode: 0755->0644]
runtime/browser/popup.h [changed mode: 0755->0644]
runtime/browser/runtime.cc [changed mode: 0755->0644]
runtime/browser/runtime.h [changed mode: 0755->0644]
runtime/browser/runtime_process.cc
runtime/browser/web_application.cc [changed mode: 0755->0644]
runtime/browser/web_application.h [changed mode: 0755->0644]
runtime/browser/web_view.h [changed mode: 0755->0644]
runtime/browser/web_view_impl.cc [changed mode: 0755->0644]
runtime/browser/web_view_impl.h [changed mode: 0755->0644]
runtime/renderer/injected_bundle.cc
runtime/runtime.gyp

old mode 100755 (executable)
new mode 100644 (file)
index 5818b8f..8e3b753
 #include <algorithm>
 #include <memory>
 #include <map>
-#include <vector>
 #include <regex> // NOLINT
 #include <utility>
+#include <vector>
 
+#include "common/file_utils.h"
 #include "common/logger.h"
 #include "common/string_utils.h"
-#include "common/file_utils.h"
 
 namespace common {
 
old mode 100755 (executable)
new mode 100644 (file)
index e59de11..573d24a
 
 #include <app_control.h>
 #include <bundle.h>
-#include <string>
-#include <vector>
 #include <map>
 #include <memory>
+#include <string>
+#include <vector>
 
 namespace common {
 
old mode 100755 (executable)
new mode 100644 (file)
index e079569..9ae065a
 #ifdef USE_APP_PREFERENCE
 #include <app_preference.h>
 #else
-#include <unistd.h>
-#include <sqlite3.h>
 #include <app.h>
+#include <sqlite3.h>
+#include <unistd.h>
 #endif
 
 #include <memory>
 
-#include "common/string_utils.h"
 #include "common/logger.h"
-
+#include "common/string_utils.h"
 #ifndef USE_APP_PREFERENCE
 #include "common/app_db_sqlite.h"
 #endif
old mode 100755 (executable)
new mode 100644 (file)
index df76a44..ac6fbb5
@@ -17,8 +17,8 @@
 #ifndef XWALK_COMMON_APP_DB_H_
 #define XWALK_COMMON_APP_DB_H_
 
-#include <string>
 #include <list>
+#include <string>
 
 namespace common {
 
old mode 100755 (executable)
new mode 100644 (file)
index 8c58cb7..8804831
@@ -1,52 +1,52 @@
-/*\r
- * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved\r
- *\r
- *    Licensed under the Apache License, Version 2.0 (the "License");\r
- *    you may not use this file except in compliance with the License.\r
- *    You may obtain a copy of the License at\r
- *\r
- *        http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- *    Unless required by applicable law or agreed to in writing, software\r
- *    distributed under the License is distributed on an "AS IS" BASIS,\r
- *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- *    See the License for the specific language governing permissions and\r
- *    limitations under the License.\r
- */\r
-\r
-#ifndef XWALK_COMMON_APP_DB_SQLITE_H_\r
-#define XWALK_COMMON_APP_DB_SQLITE_H_\r
-\r
-#include <string>\r
-#include <list>\r
-\r
-#include "common/app_db.h"\r
-\r
-class sqlite3;\r
-\r
-namespace common {\r
-class SqliteDB : public AppDB {\r
- public:\r
-  explicit SqliteDB(const std::string& app_data_path = std::string());\r
-  ~SqliteDB();\r
-  virtual bool HasKey(const std::string& section,\r
-                      const std::string& key) const;\r
-  virtual std::string Get(const std::string& section,\r
-                          const std::string& key) const;\r
-  virtual void Set(const std::string& section,\r
-                   const std::string& key,\r
-                   const std::string& value);\r
-  virtual void GetKeys(const std::string& section,\r
-                       std::list<std::string>* keys) const;\r
-  virtual void Remove(const std::string& section,\r
-                      const std::string& key);\r
-\r
- private:\r
-  void Initialize();\r
-  std::string app_data_path_;\r
-  sqlite3* sqldb_;\r
-};\r
-\r
-}  //  namespace common\r
-\r
-#endif  // XWALK_COMMON_APP_DB_SQLITE_H_\r
+/*
+ * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *    Licensed under the Apache License, Version 2.0 (the "License");
+ *    you may not use this file except in compliance with the License.
+ *    You may obtain a copy of the License at
+ *
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *    Unless required by applicable law or agreed to in writing, software
+ *    distributed under the License is distributed on an "AS IS" BASIS,
+ *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *    See the License for the specific language governing permissions and
+ *    limitations under the License.
+ */
+
+#ifndef XWALK_COMMON_APP_DB_SQLITE_H_
+#define XWALK_COMMON_APP_DB_SQLITE_H_
+
+#include <list>
+#include <string>
+
+#include "common/app_db.h"
+
+class sqlite3;
+
+namespace common {
+class SqliteDB : public AppDB {
+ public:
+  explicit SqliteDB(const std::string& app_data_path = std::string());
+  ~SqliteDB();
+  virtual bool HasKey(const std::string& section,
+                      const std::string& key) const;
+  virtual std::string Get(const std::string& section,
+                          const std::string& key) const;
+  virtual void Set(const std::string& section,
+                   const std::string& key,
+                   const std::string& value);
+  virtual void GetKeys(const std::string& section,
+                       std::list<std::string>* keys) const;
+  virtual void Remove(const std::string& section,
+                      const std::string& key);
+
+ private:
+  void Initialize();
+  std::string app_data_path_;
+  sqlite3* sqldb_;
+};
+
+}  //  namespace common
+
+#endif  // XWALK_COMMON_APP_DB_SQLITE_H_
old mode 100755 (executable)
new mode 100644 (file)
index bcdf40b..5eae07d
 
 #include "common/application_data.h"
 
-#include <package_manager.h>
-#include <manifest_handlers/widget_config_parser.h>
 #include <manifest_handlers/application_manifest_constants.h>
+#include <manifest_handlers/widget_config_parser.h>
+#include <package_manager.h>
 
 #include <vector>
 
-#include "common/logger.h"
 #include "common/file_utils.h"
+#include "common/logger.h"
 #include "common/profiler.h"
 
 namespace common {
old mode 100755 (executable)
new mode 100644 (file)
index 69a8b0c..5831cf3
@@ -21,6 +21,8 @@
 #include <manifest_handlers/appwidget_handler.h>
 #include <manifest_handlers/app_control_handler.h>
 #include <manifest_handlers/category_handler.h>
+#include <manifest_handlers/content_handler.h>
+#include <manifest_handlers/csp_handler.h>
 #include <manifest_handlers/ime_handler.h>
 #include <manifest_handlers/metadata_handler.h>
 #include <manifest_handlers/navigation_handler.h>
 #include <manifest_handlers/setting_handler.h>
 #include <manifest_handlers/splash_screen_handler.h>
 #include <manifest_handlers/tizen_application_handler.h>
-#include <manifest_handlers/widget_handler.h>
-#include <manifest_handlers/content_handler.h>
 #include <manifest_handlers/warp_handler.h>
-#include <manifest_handlers/csp_handler.h>
-
+#include <manifest_handlers/widget_handler.h>
 
 #include <memory>
 #include <string>
index d884fda..12a3667 100644 (file)
@@ -17,6 +17,7 @@
 #include "common/command_line.h"
 
 #include <cstring>
+
 #include "common/file_utils.h"
 
 namespace common {
index d2ee842..6854808 100644 (file)
@@ -17,8 +17,8 @@
 #ifndef XWALK_COMMON_COMMAND_LINE_H_
 #define XWALK_COMMON_COMMAND_LINE_H_
 
-#include <string>
 #include <map>
+#include <string>
 #include <vector>
 
 namespace common {
index 9c886cb..9826187 100644 (file)
       ],
       'variables': {
         'packages': [
-          'dlog',
-          'gio-2.0',
-          'uuid',
-          'aul',
           'appsvc',
-          'pkgmgr-info',
-          'manifest-parser',
-          'manifest-handlers',
-          'capi-appfw-package-manager',
+          'aul',
           'capi-appfw-application',
+          'capi-appfw-package-manager',
           'capi-system-system-settings',
+          'dlog',
+          'gio-2.0',
+          'uuid',
           'libcurl',
           'libwebappenc',
+          'manifest-parser',
+          'manifest-handlers',
+          'pkgmgr-info',
           'glib-2.0',
         ],
       },
index 8c18315..52caa82 100644 (file)
@@ -16,8 +16,8 @@
 
 #include "common/dbus_client.h"
 
-#include "common/logger.h"
 #include "common/file_utils.h"
+#include "common/logger.h"
 
 namespace common {
 
index 1f6c519..0863a5c 100644 (file)
 #ifndef XWALK_COMMON_DBUS_CLIENT_H_
 #define XWALK_COMMON_DBUS_CLIENT_H_
 
-#include <glib.h>
 #include <gio/gio.h>
+#include <glib.h>
 
-#include <string>
 #include <functional>
 #include <map>
+#include <string>
 
 namespace common {
 
index d03f813..112f891 100644 (file)
 #ifndef XWALK_COMMON_DBUS_SERVER_H_
 #define XWALK_COMMON_DBUS_SERVER_H_
 
-#include <glib.h>
 #include <gio/gio.h>
-#include <string>
-#include <map>
+#include <glib.h>
 #include <functional>
+#include <map>
+#include <string>
 
 namespace common {
 
index 47eb222..2b00d3c 100644 (file)
 
 #include "common/file_utils.h"
 
-#include <unistd.h>
-#include <libgen.h>
 #include <sys/types.h>
+#include <libgen.h>
+#include <unistd.h>
 
-#include <string>
-#include <sstream>
 #include <algorithm>
+#include <sstream>
+#include <string>
 
 namespace common {
 namespace utils {
old mode 100755 (executable)
new mode 100644 (file)
index e9b0866..f46a108
 #include "common/locale_manager.h"
 
 #include <system_settings.h>
-#include <memory>
+
 #include <algorithm>
+#include <memory>
 
-#include "common/logger.h"
 #include "common/file_utils.h"
+#include "common/logger.h"
 
 namespace common {
 
old mode 100755 (executable)
new mode 100644 (file)
index ca78110..e97d96d
@@ -17,9 +17,9 @@
 #ifndef XWALK_COMMON_LOCALE_MANAGER_H_
 #define XWALK_COMMON_LOCALE_MANAGER_H_
 
-#include <string>
 #include <list>
 #include <map>
+#include <string>
 
 namespace common {
 
index 6127c7d..51dd908 100644 (file)
@@ -19,9 +19,9 @@
 
 #include <time.h>
 
-#include <string>
-#include <memory>
 #include <map>
+#include <memory>
+#include <string>
 
 namespace common {
 
index da030f9..d4e8d12 100644 (file)
@@ -17,9 +17,9 @@
 #ifndef XWALK_COMMON_RESOURCE_MANAGER_H_
 #define XWALK_COMMON_RESOURCE_MANAGER_H_
 
-#include <string>
 #include <map>
 #include <memory>
+#include <string>
 
 namespace wgt {
 namespace parse {
index 0d76cb7..fbb312f 100644 (file)
@@ -17,8 +17,8 @@
 #ifndef XWALK_COMMON_STRING_UTILS_H_
 #define XWALK_COMMON_STRING_UTILS_H_
 
-#include <vector>
 #include <string>
+#include <vector>
 
 namespace common {
 namespace utils {
index 961b355..adfbff1 100644 (file)
  *    limitations under the License.
  */
 
+#include "common/url.h"
+
 #include <algorithm>
 #include <stdexcept>
 
-#include "common/url.h"
-
 #include "common/logger.h"
 #include "common/string_utils.h"
 
index 492c0ed..43c2279 100644 (file)
@@ -9,8 +9,8 @@
 #include <string>
 
 #include "common/logger.h"
-#include "extensions/public/XW_Extension.h"
 #include "extensions/extension/xwalk_extension_adapter.h"
+#include "extensions/public/XW_Extension.h"
 
 namespace extensions {
 
index 5adb942..776d003 100644 (file)
 
 #include "extensions/extension/xwalk_extension.h"
 #include "extensions/extension/xwalk_extension_instance.h"
-
 #include "extensions/public/XW_Extension.h"
-#include "extensions/public/XW_Extension_SyncMessage.h"
 #include "extensions/public/XW_Extension_EntryPoints.h"
-#include "extensions/public/XW_Extension_Runtime.h"
 #include "extensions/public/XW_Extension_Permissions.h"
+#include "extensions/public/XW_Extension_Runtime.h"
+#include "extensions/public/XW_Extension_SyncMessage.h"
 
 namespace extensions {
 
index 0818f65..9efe2db 100644 (file)
@@ -6,8 +6,8 @@
 #ifndef XWALK_EXTENSIONS_XWALK_EXTENSION_INSTANCE_H_
 #define XWALK_EXTENSIONS_XWALK_EXTENSION_INSTANCE_H_
 
-#include <string>
 #include <functional>
+#include <string>
 
 #include "extensions/public/XW_Extension.h"
 
index 7bbfd88..867ec55 100644 (file)
@@ -6,8 +6,8 @@
 #include <glib.h>
 #include <glib-unix.h>
 
-#include "common/logger.h"
 #include "common/command_line.h"
+#include "common/logger.h"
 #include "extensions/extension/xwalk_extension_server.h"
 
 int main(int argc, char* argv[]) {
index 2596d52..075110d 100644 (file)
@@ -4,18 +4,19 @@
 
 #include "extensions/extension/xwalk_extension_server.h"
 
-#include <glob.h>
 #include <glib.h>
+#include <glob.h>
 
+#include <fstream>
 #include <string>
 #include <vector>
-#include <fstream>
 
-#include "common/logger.h"
+#include "common/app_db.h"
 #include "common/file_utils.h"
-#include "common/string_utils.h"
+#include "common/logger.h"
 #include "common/picojson.h"
-#include "common/app_db.h"
+#include "common/string_utils.h"
+
 #include "extensions/common/constants.h"
 #include "extensions/extension/xwalk_extension.h"
 
index 967f6d0..854e534 100644 (file)
@@ -5,13 +5,13 @@
 #ifndef XWALK_EXTENSIONS_XWALK_EXTENSION_SERVER_H_
 #define XWALK_EXTENSIONS_XWALK_EXTENSION_SERVER_H_
 
-#include <string>
-#include <set>
 #include <map>
+#include <set>
+#include <string>
 #include <vector>
 
-#include "common/dbus_server.h"
 #include "common/dbus_client.h"
+#include "common/dbus_server.h"
 #include "extensions/extension/xwalk_extension.h"
 
 namespace extensions {
index 4ef53a2..e864427 100644 (file)
@@ -59,8 +59,8 @@
       ],
       'variables': {
         'packages': [
-          'elementary',
           'chromium-efl',
+          'elementary',
         ],
       },
     }, # end of target 'xwalk_extension_renderer'
index 05ca1f9..aab1dab 100644 (file)
@@ -25,9 +25,9 @@
 #include "extensions/public/XW_Extension_Runtime.h"
 #include "extensions/public/XW_Extension_SyncMessage.h"
 
-#include "common/logger.h"
 #include "common/application_data.h"
 #include "common/locale_manager.h"
+#include "common/logger.h"
 #include "common/string_utils.h"
 
 XW_Extension g_xw_extension = 0;
index 8cd664f..67cb503 100644 (file)
@@ -17,6 +17,7 @@
 #include "extensions/renderer/object_tools_module.h"
 
 #include <v8/v8.h>
+
 #include <string>
 
 #include "common/logger.h"
index c1a8144..d04575b 100644 (file)
@@ -19,6 +19,7 @@
 
 #include <v8/v8.h>
 #include <ewk_ipc_message.h>
+
 #include <functional>
 #include <map>
 #include <string>
index 3bbf7e7..51b4c02 100644 (file)
 #include "extensions/renderer/widget_module.h"
 
 #include <v8/v8.h>
-#include <vector>
+
 #include <algorithm>
+#include <vector>
 
-#include "common/logger.h"
 #include "common/app_db.h"
+#include "common/logger.h"
 
 namespace extensions {
 
index 6b0885c..f14e38d 100644 (file)
@@ -5,14 +5,14 @@
 
 #include "extensions/renderer/xwalk_extension_client.h"
 
-#include <unistd.h>
-#include <glib.h>
 #include <gio/gio.h>
+#include <glib.h>
+#include <unistd.h>
+
 #include <string>
 
 #include "common/logger.h"
 #include "common/profiler.h"
-
 #include "extensions/common/constants.h"
 
 namespace extensions {
index 04343b1..bba39ef 100644 (file)
@@ -6,9 +6,9 @@
 #ifndef XWALK_EXTENSIONS_RENDERER_XWALK_EXTENSION_CLIENT_H_
 #define XWALK_EXTENSIONS_RENDERER_XWALK_EXTENSION_CLIENT_H_
 
-#include <string>
-#include <memory>
 #include <map>
+#include <memory>
+#include <string>
 #include <vector>
 
 #include "common/dbus_client.h"
index a720a4c..e7d6f3c 100644 (file)
@@ -6,16 +6,16 @@
 
 #include "extensions/renderer/xwalk_extension_module.h"
 
-#include <stdio.h>
-#include <stdarg.h>
 #include <v8/v8.h>
+#include <stdarg.h>
+#include <stdio.h>
 
 #include <vector>
 
 #include "common/logger.h"
+#include "extensions/renderer/runtime_ipc_client.h"
 #include "extensions/renderer/xwalk_extension_client.h"
 #include "extensions/renderer/xwalk_module_system.h"
-#include "extensions/renderer/runtime_ipc_client.h"
 
 // The arraysize(arr) macro returns the # of elements in an array arr.
 // The expression is a compile-time constant, and therefore can be
index 294388a..1e6395d 100644 (file)
 
 #include "common/logger.h"
 #include "common/profiler.h"
+#include "extensions/renderer/object_tools_module.h"
+#include "extensions/renderer/widget_module.h"
 #include "extensions/renderer/xwalk_extension_client.h"
 #include "extensions/renderer/xwalk_extension_module.h"
 #include "extensions/renderer/xwalk_module_system.h"
 #include "extensions/renderer/xwalk_v8tools_module.h"
-#include "extensions/renderer/widget_module.h"
-#include "extensions/renderer/object_tools_module.h"
 
 namespace extensions {
 
index f271d2f..c8937e7 100644 (file)
@@ -7,8 +7,8 @@
 #define XWALK_EXTENSIONS_RENDERER_XWALK_EXTENSION_RENDERER_CONTROLLER_H_
 
 #include <v8/v8.h>
-#include <string>
 #include <memory>
+#include <string>
 
 namespace extensions {
 
index 11ccf29..f799809 100644 (file)
@@ -6,6 +6,7 @@
 #include "extensions/renderer/xwalk_module_system.h"
 
 #include <v8/v8.h>
+
 #include <algorithm>
 
 #include "common/logger.h"
index 89aef42..b70603a 100644 (file)
@@ -7,10 +7,11 @@
 #define XWALK_EXTENSIONS_RENDERER_XWALK_MODULE_SYSTEM_H_
 
 #include <v8/v8.h>
-#include <vector>
-#include <string>
-#include <memory>
+
 #include <map>
+#include <memory>
+#include <string>
+#include <vector>
 
 namespace extensions {
 
index 291049f..1c58738 100644 (file)
@@ -22,34 +22,34 @@ ExclusiveArch:
 %endif
 ############################################################
 
-BuildRequires: ninja
+BuildRequires: boost-devel
 BuildRequires: edje-tools
 BuildRequires: gettext
+BuildRequires: ninja
 BuildRequires: python
-BuildRequires: boost-devel
 BuildRequires: pkgconfig(appsvc)
+BuildRequires: pkgconfig(aul)
 BuildRequires: pkgconfig(bundle)
-BuildRequires: pkgconfig(dlog)
-BuildRequires: pkgconfig(elementary)
 BuildRequires: pkgconfig(capi-appfw-application)
-BuildRequires: pkgconfig(manifest-parser)
-BuildRequires: pkgconfig(manifest-handlers)
-BuildRequires: pkgconfig(pkgmgr-info)
 BuildRequires: pkgconfig(capi-appfw-package-manager)
-BuildRequires: pkgconfig(efl-extension)
-BuildRequires: pkgconfig(deviced)
 BuildRequires: pkgconfig(capi-system-system-settings)
-BuildRequires: pkgconfig(uuid)
-BuildRequires: pkgconfig(gio-2.0)
-BuildRequires: pkgconfig(aul)
+BuildRequires: pkgconfig(chromium-efl)
+BuildRequires: pkgconfig(deviced)
+BuildRequires: pkgconfig(dlog)
 BuildRequires: pkgconfig(ecore)
-BuildRequires: pkgconfig(notification)
-BuildRequires: pkgconfig(sqlite3)
 BuildRequires: pkgconfig(ecore-wayland)
-BuildRequires: pkgconfig(chromium-efl)
+BuildRequires: pkgconfig(efl-extension)
+BuildRequires: pkgconfig(elementary)
+BuildRequires: pkgconfig(gio-2.0)
+BuildRequires: pkgconfig(glib-2.0)
 BuildRequires: pkgconfig(libcurl)
 BuildRequires: pkgconfig(libwebappenc)
-BuildRequires: pkgconfig(glib-2.0)
+BuildRequires: pkgconfig(manifest-handlers)
+BuildRequires: pkgconfig(manifest-parser)
+BuildRequires: pkgconfig(notification)
+BuildRequires: pkgconfig(pkgmgr-info)
+BuildRequires: pkgconfig(sqlite3)
+BuildRequires: pkgconfig(uuid)
 
 %description
 Crosswalk Runtime and AppShell for Tizen 3.0 and later
old mode 100755 (executable)
new mode 100644 (file)
index 247c595..131c6ba
 
 #ifndef XWALK_RUNTIME_BROWSER_NATIVE_WINDOW_H_
 #define XWALK_RUNTIME_BROWSER_NATIVE_WINDOW_H_
-#include <functional>
-#include <map>
 
 #include <Elementary.h>
 
+#include <functional>
+#include <map>
+
 namespace runtime {
 
 class NativeWindow {
old mode 100755 (executable)
new mode 100644 (file)
index 27c99cc..da93524
@@ -18,8 +18,8 @@
 #ifndef XWALK_RUNTIME_BROWSER_NOTIFICATION_MANAGER_H_
 #define XWALK_RUNTIME_BROWSER_NOTIFICATION_MANAGER_H_
 
-#include <string>
 #include <map>
+#include <string>
 
 namespace runtime {
 class NotificationManager {
old mode 100755 (executable)
new mode 100644 (file)
index dcd5557..82a2d87
 #include "runtime/browser/popup.h"
 
 #include "common/logger.h"
-
-#include "runtime/common/constants.h"
 #include "runtime/browser/native_window.h"
 #include "runtime/browser/popup_string.h"
+#include "runtime/common/constants.h"
 
 namespace runtime {
 
old mode 100755 (executable)
new mode 100644 (file)
index 6e2801d..c1af8dd
 #ifndef XWALK_RUNTIME_BROWSER_POPUP_H_
 #define XWALK_RUNTIME_BROWSER_POPUP_H_
 
-#include <Evas.h>
 #include <Elementary.h>
+#include <Evas.h>
 
-#include <string>
+#include <functional>
 #include <set>
+#include <string>
 #include <vector>
-#include <functional>
 
 namespace runtime {
 
old mode 100755 (executable)
new mode 100644 (file)
index 1982caf..1701b63
  *    limitations under the License.
  */
 
-
 #include "runtime/browser/runtime.h"
 
 #include <ewk_chromium.h>
-#include <string>
 #include <memory>
+#include <string>
 
-#include "common/logger.h"
-#include "common/command_line.h"
-#include "common/app_control.h"
 #include "common/application_data.h"
+#include "common/app_control.h"
 #include "common/app_db.h"
+#include "common/command_line.h"
+#include "common/logger.h"
 #include "common/profiler.h"
-#include "runtime/common/constants.h"
 #include "runtime/browser/native_app_window.h"
+#include "runtime/common/constants.h"
 
 namespace runtime {
 
old mode 100755 (executable)
new mode 100644 (file)
index 00c611a..9be8495
@@ -14,7 +14,6 @@
  *    limitations under the License.
  */
 
-
 #ifndef XWALK_RUNTIME_BROWSER_RUNTIME_H_
 #define XWALK_RUNTIME_BROWSER_RUNTIME_H_
 
index 75aab7a..815cd6d 100644 (file)
@@ -16,8 +16,8 @@
 
 #include <ewk_chromium.h>
 
-#include "common/logger.h"
 #include "common/command_line.h"
+#include "common/logger.h"
 #include "common/profiler.h"
 #include "runtime/browser/runtime.h"
 
old mode 100755 (executable)
new mode 100644 (file)
index 446ec8d..ff585a9
 #include <app.h>
 #include <Ecore.h>
 #include <ewk_chromium.h>
+
 #include <algorithm>
+#include <map>
 #include <memory>
 #include <sstream>
 #include <vector>
-#include <map>
 
-#include "common/logger.h"
-#include "common/command_line.h"
-#include "common/string_utils.h"
-#include "common/app_control.h"
-#include "common/locale_manager.h"
 #include "common/application_data.h"
-#include "common/resource_manager.h"
 #include "common/app_db.h"
+#include "common/app_control.h"
+#include "common/command_line.h"
+#include "common/locale_manager.h"
+#include "common/logger.h"
 #include "common/profiler.h"
-
+#include "common/resource_manager.h"
+#include "common/string_utils.h"
 #include "runtime/browser/native_window.h"
-#include "runtime/browser/web_view.h"
-#include "runtime/browser/vibration_manager.h"
 #include "runtime/browser/notification_manager.h"
 #include "runtime/browser/popup.h"
 #include "runtime/browser/popup_string.h"
+#include "runtime/browser/vibration_manager.h"
+#include "runtime/browser/web_view.h"
 
 #ifndef INJECTED_BUNDLE_PATH
   #error INJECTED_BUNDLE_PATH is not set.
old mode 100755 (executable)
new mode 100644 (file)
index a5404d5..430213d
 #ifndef XWALK_RUNTIME_BROWSER_WEB_APPLICATION_H_
 #define XWALK_RUNTIME_BROWSER_WEB_APPLICATION_H_
 
-#include <string>
+#include <functional>
 #include <list>
 #include <memory>
-#include <functional>
+#include <string>
 
 #include "runtime/browser/web_view.h"
 
old mode 100755 (executable)
new mode 100644 (file)
index 718b899..8bb1823
@@ -19,8 +19,8 @@
 
 #include <Elementary.h>
 #include <ewk_ipc_message.h>
-#include <string>
 #include <functional>
+#include <string>
 
 #include "runtime/browser/native_window.h"
 
old mode 100755 (executable)
new mode 100644 (file)
index 204de32..f2d7958
@@ -21,8 +21,8 @@
 #include <functional>
 #include <sstream>
 
-#include "common/logger.h"
 #include "common/file_utils.h"
+#include "common/logger.h"
 #include "common/profiler.h"
 #include "runtime/browser/native_window.h"
 
old mode 100755 (executable)
new mode 100644 (file)
index 2a81112..af51350
 #ifndef XWALK_RUNTIME_BROWSER_WEB_VIEW_IMPL_H_
 #define XWALK_RUNTIME_BROWSER_WEB_VIEW_IMPL_H_
 
-#include <ewk_chromium.h>
-#include <Elementary.h>
 #include <efl_extension.h>
-#include <string>
+#include <Elementary.h>
+#include <ewk_chromium.h>
+
 #include <map>
+#include <string>
 
 #include "common/url.h"
 #include "runtime/browser/web_view.h"
index c628d05..4f9cb4c 100644 (file)
  *    limitations under the License.
  */
 
+#include <Ecore.h>
+#include <ewk_ipc_message.h>
 #include <unistd.h>
 #include <v8.h>
-#include <ewk_ipc_message.h>
-#include <Ecore.h>
-#include <string>
+
 #include <memory>
+#include <string>
 
-#include "common/logger.h"
-#include "common/string_utils.h"
 #include "common/application_data.h"
-#include "common/resource_manager.h"
 #include "common/locale_manager.h"
+#include "common/logger.h"
 #include "common/profiler.h"
+#include "common/resource_manager.h"
+#include "common/string_utils.h"
 #include "extensions/renderer/runtime_ipc_client.h"
+#include "extensions/renderer/widget_module.h"
 #include "extensions/renderer/xwalk_extension_renderer_controller.h"
 #include "extensions/renderer/xwalk_module_system.h"
-#include "extensions/renderer/widget_module.h"
 
 namespace runtime {
 class BundleGlobalData {
index a8a8afa..b1edcd8 100644 (file)
       ],
       'variables': {
         'packages': [
+          'capi-appfw-application',
+          'chromium-efl',
           'ecore',
           'ecore-wayland',
-          'elementary',
           'efl-extension',
-          'chromium-efl',
-          'capi-appfw-application',
+          'elementary',
           'deviced',
           'notification',
         ],
       ],
       'variables': {
         'packages': [
-          'elementary',
           'chromium-efl',
+          'elementary',
         ],
       },
     }, # end of target 'xwalk_injected_bundle'
   ],
-}
\ No newline at end of file
+}