Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / xwalk / application / common / application_storage_constants.h
1 // Copyright (c) 2013 Intel Corporation. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef XWALK_APPLICATION_COMMON_APPLICATION_STORAGE_CONSTANTS_H_
6 #define XWALK_APPLICATION_COMMON_APPLICATION_STORAGE_CONSTANTS_H_
7
8 #include "base/files/file_path.h"
9 #include "base/basictypes.h"
10
11 namespace xwalk {
12 namespace application_storage_constants {
13   extern const char kAppTableName[];
14   extern const char kEventTableName[];
15   extern const char kPermissionTableName[];
16   extern const char kGarbageCollectionTableName[];
17
18   extern const char kCreateAppTableOp[];
19   extern const char kCreateEventTableOp[];
20   extern const char kCreatePermissionTableOp[];
21   extern const char kCreateGarbageCollectionTableOp[];
22   extern const char kCreateGarbageCollectionTriggersOp[];
23   extern const char kGetAllRowsFromAppEventTableOp[];
24   extern const char kSetApplicationWithBindOp[];
25   extern const char kUpdateApplicationWithBindOp[];
26   extern const char kDeleteApplicationWithBindOp[];
27   extern const char kInsertEventsWithBindOp[];
28   extern const char kUpdateEventsWithBindOp[];
29   extern const char kDeleteEventsWithBindOp[];
30   extern const char kInsertPermissionsWithBindOp[];
31   extern const char kUpdatePermissionsWithBindOp[];
32   extern const char kDeletePermissionsWithBindOp[];
33   extern const char kGetAllRowsFromGarbageCollectionTableOp[];
34   extern const char kDeleteGarbageAppIdWithBindOp[];
35
36 }  // namespace application_storage_constants
37 }  // namespace xwalk
38
39 #endif  // XWALK_APPLICATION_COMMON_APPLICATION_STORAGE_CONSTANTS_H_