Implement Security origin database
authorJihoon Chung <jihoon.chung@samsung.com>
Tue, 9 Oct 2012 01:14:19 +0000 (10:14 +0900)
committerJihoon Chung <jihoon.chung@samsung.com>
Mon, 12 Nov 2012 07:49:10 +0000 (16:49 +0900)
commitfd75b98284edce64594472508970904ca91684eb
tree8acfbbfee648c327faf89342fac436fa65484b49
parent9f21cc18aa89ea111a8a33b30b15ea88c449168b
Implement Security origin database

[Issue#] N/A
[Problem] Web standard required checking security origin before
using special feature such as Geolocation, Web notification and
file system access. For supporting security origin, this patch
create database for storing security origin information.
[Cause] N/A
[Solution] Implement Security origin database
[SCMRequest] N/A

Change-Id: Iba488dcd3833868639655495b56d7d2cd695b084
17 files changed:
.gitignore
CMakeLists.txt
build/CMakeLists.txt
build/security_origin_dao/CMakeLists.txt [new file with mode: 0644]
build/security_origin_dao/wrt-commons-security-origin-dao.pc.in [new file with mode: 0644]
modules/CMakeLists.txt
modules/security_origin_dao/CMakeLists.txt [new file with mode: 0644]
modules/security_origin_dao/dao/security_origin_dao.cpp [new file with mode: 0644]
modules/security_origin_dao/dao/security_origin_dao_types.cpp [new file with mode: 0644]
modules/security_origin_dao/dao/security_origin_database.cpp [new file with mode: 0644]
modules/security_origin_dao/include/wrt-commons/security-origin-dao/security_origin_dao.h [new file with mode: 0644]
modules/security_origin_dao/include/wrt-commons/security-origin-dao/security_origin_dao_types.h [new file with mode: 0644]
modules/security_origin_dao/include/wrt-commons/security-origin-dao/security_origin_database.h [new file with mode: 0644]
modules/security_origin_dao/orm/orm_generator_security_origin.h [new file with mode: 0644]
modules/security_origin_dao/orm/security_origin_db [new file with mode: 0644]
modules/security_origin_dao/orm/security_origin_db_definitions [new file with mode: 0644]
modules/security_origin_dao/orm/security_origin_db_sql_generator.h [new file with mode: 0644]