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