Initial implementation for device apis using xwalk-style
authorWonYoung Choi <wy80.choi@samsung.com>
Wed, 3 Dec 2014 07:30:22 +0000 (16:30 +0900)
committerWonYoung Choi <wy80.choi@samsung.com>
Thu, 4 Dec 2014 02:15:38 +0000 (11:15 +0900)
commit5d6c650a6b4f459ca49b6c18b7ed36cf9b443ffc
tree10e1f1bbf2348099ab345c57f0047582baa9ed7f
parent1658ef60a9d2719e747e9a3a00eb457dcad2b8a6
Initial implementation for device apis using xwalk-style

Change-Id: I514b0a42d4a96822ceb658ee7254925ed75614f4
102 files changed:
LICENSE [new file with mode: 0644]
LICENSE.AL2 [new file with mode: 0644]
README.md [new file with mode: 0644]
VERSION [new file with mode: 0644]
common/XW_Extension.h [new file with mode: 0644]
common/XW_Extension_EntryPoints.h [new file with mode: 0644]
common/XW_Extension_Permissions.h [new file with mode: 0644]
common/XW_Extension_Runtime.h [new file with mode: 0644]
common/XW_Extension_SyncMessage.h [new file with mode: 0644]
common/common.gypi [new file with mode: 0644]
common/dbus_operation.cc [new file with mode: 0644]
common/dbus_operation.h [new file with mode: 0644]
common/extension.cc [new file with mode: 0644]
common/extension.h [new file with mode: 0644]
common/logger.h [new file with mode: 0644]
common/picojson.h [new file with mode: 0644]
common/pkg-config.gypi [new file with mode: 0644]
common/platform_exception.cc [new file with mode: 0644]
common/platform_exception.h [new file with mode: 0644]
common/utils.h [new file with mode: 0644]
common/xwalk_js2c.gypi [new file with mode: 0644]
messageport/messageport.gyp [new file with mode: 0644]
messageport/messageport_api.js [new file with mode: 0644]
messageport/messageport_extension.cc [new file with mode: 0644]
messageport/messageport_extension.h [new file with mode: 0644]
messageport/messageport_instance.cc [new file with mode: 0644]
messageport/messageport_instance.h [new file with mode: 0644]
packaging/webapi-plugins.spec [new file with mode: 0644]
power/power.gyp [new file with mode: 0644]
power/power_api.js [new file with mode: 0644]
power/power_extension.cc [new file with mode: 0644]
power/power_extension.h [new file with mode: 0644]
power/power_instance.cc [new file with mode: 0644]
power/power_instance.h [new file with mode: 0644]
power/power_manager.cc [new file with mode: 0755]
power/power_manager.h [new file with mode: 0755]
power/power_platform_proxy.cc [new file with mode: 0755]
power/power_platform_proxy.h [new file with mode: 0755]
time/time.gyp [new file with mode: 0644]
time/time_api.js [new file with mode: 0644]
time/time_extension.cc [new file with mode: 0644]
time/time_extension.h [new file with mode: 0644]
time/time_instance.cc [new file with mode: 0644]
time/time_instance.h [new file with mode: 0644]
tizen-wrt.gyp [new file with mode: 0644]
tizen/tizen.gyp [new file with mode: 0644]
tizen/tizen.h [new file with mode: 0644]
tizen/tizen_api.js [new file with mode: 0644]
tizen/tizen_extension.cc [new file with mode: 0644]
tizen/tizen_extension.h [new file with mode: 0644]
tools/check-coding-style [new file with mode: 0755]
tools/generate_api.py [new file with mode: 0755]
tools/generate_manifest.py [new file with mode: 0755]
tools/gyp/.gitignore [new file with mode: 0644]
tools/gyp/AUTHORS [new file with mode: 0644]
tools/gyp/LICENSE [new file with mode: 0644]
tools/gyp/gyp [new file with mode: 0755]
tools/gyp/gyp.bat [new file with mode: 0755]
tools/gyp/pylib/gyp/MSVSNew.py [new file with mode: 0644]
tools/gyp/pylib/gyp/MSVSProject.py [new file with mode: 0644]
tools/gyp/pylib/gyp/MSVSSettings.py [new file with mode: 0644]
tools/gyp/pylib/gyp/MSVSSettings_test.py [new file with mode: 0755]
tools/gyp/pylib/gyp/MSVSToolFile.py [new file with mode: 0644]
tools/gyp/pylib/gyp/MSVSUserFile.py [new file with mode: 0644]
tools/gyp/pylib/gyp/MSVSUtil.py [new file with mode: 0644]
tools/gyp/pylib/gyp/MSVSVersion.py [new file with mode: 0644]
tools/gyp/pylib/gyp/SCons.py [new file with mode: 0644]
tools/gyp/pylib/gyp/__init__.py [new file with mode: 0755]
tools/gyp/pylib/gyp/common.py [new file with mode: 0644]
tools/gyp/pylib/gyp/common_test.py [new file with mode: 0755]
tools/gyp/pylib/gyp/easy_xml.py [new file with mode: 0644]
tools/gyp/pylib/gyp/easy_xml_test.py [new file with mode: 0755]
tools/gyp/pylib/gyp/generator/__init__.py [new file with mode: 0644]
tools/gyp/pylib/gyp/generator/android.py [new file with mode: 0644]
tools/gyp/pylib/gyp/generator/dump_dependency_json.py [new file with mode: 0644]
tools/gyp/pylib/gyp/generator/eclipse.py [new file with mode: 0644]
tools/gyp/pylib/gyp/generator/gypd.py [new file with mode: 0644]
tools/gyp/pylib/gyp/generator/gypsh.py [new file with mode: 0644]
tools/gyp/pylib/gyp/generator/make.py [new file with mode: 0644]
tools/gyp/pylib/gyp/generator/msvs.py [new file with mode: 0644]
tools/gyp/pylib/gyp/generator/msvs_test.py [new file with mode: 0755]
tools/gyp/pylib/gyp/generator/ninja.py [new file with mode: 0644]
tools/gyp/pylib/gyp/generator/ninja_test.py [new file with mode: 0644]
tools/gyp/pylib/gyp/generator/scons.py [new file with mode: 0644]
tools/gyp/pylib/gyp/generator/xcode.py [new file with mode: 0644]
tools/gyp/pylib/gyp/input.py [new file with mode: 0644]
tools/gyp/pylib/gyp/mac_tool.py [new file with mode: 0755]
tools/gyp/pylib/gyp/msvs_emulation.py [new file with mode: 0644]
tools/gyp/pylib/gyp/ninja_syntax.py [new file with mode: 0644]
tools/gyp/pylib/gyp/sun_tool.py [new file with mode: 0755]
tools/gyp/pylib/gyp/win_tool.py [new file with mode: 0755]
tools/gyp/pylib/gyp/xcode_emulation.py [new file with mode: 0644]
tools/gyp/pylib/gyp/xcodeproj_file.py [new file with mode: 0644]
tools/gyp/pylib/gyp/xml_fix.py [new file with mode: 0644]
tools/gyp/pylintrc [new file with mode: 0644]
tools/increment-version.py [new file with mode: 0755]
tools/redirect-stdout.sh [new file with mode: 0755]
utils/test.js [new file with mode: 0644]
utils/utils.gyp [new file with mode: 0644]
utils/utils_api.js [new file with mode: 0644]
utils/utils_extension.cc [new file with mode: 0644]
utils/utils_extension.h [new file with mode: 0644]