b1c977e58b9e1818e1dece42b66d98bc6c2e262c
[platform/framework/web/crosswalk.git] / src / xwalk / application / common / installer / tizen / packageinfo_constants.cc
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 #include "xwalk/application/common/installer/tizen/packageinfo_constants.h"
6
7 namespace xwalk {
8 namespace application_packageinfo_constants {
9
10 const base::FilePath::CharType kAppDir[] =
11     FILE_PATH_LITERAL("applications");
12 const base::FilePath::CharType kAppDBPath[] =
13     FILE_PATH_LITERAL("applications.db");
14 const base::FilePath::CharType kAppDBJournalPath[] =
15     FILE_PATH_LITERAL("applications.db-journal");
16 const base::FilePath::CharType kIconDir[] =
17     FILE_PATH_LITERAL("/usr/share/icons/default/small/");
18 const base::FilePath::CharType kXmlDir[] =
19     FILE_PATH_LITERAL("/usr/share/packages/");
20 const base::FilePath::CharType kXwalkPath[] =
21     FILE_PATH_LITERAL("/usr/lib/xwalk/xwalk");
22 const base::FilePath::CharType kExecDir[] =
23     FILE_PATH_LITERAL("bin");
24
25 const char kDefaultIconName[] = "crosswalk.png";
26 const char kOwner[] = "app";
27
28 const char kXmlExtension[] = ".xml";
29 const char kSeparator[] = ".";
30
31 }  // namespace application_packageinfo_constants
32 }  // namespace xwalk