8a847746e5f88597ddc689d29e0e4aaabbd48bc4
[platform/framework/web/crosswalk.git] / src / xwalk / application / common / constants.cc
1 // Copyright (c) 2012 The Chromium Authors. 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/constants.h"
6
7 namespace xwalk {
8 namespace application {
9
10 // TODO(xiang): might rename this according to the spec.
11 const char kApplicationScheme[] = "app";
12 const base::FilePath::CharType kManifestXpkFilename[] =
13     FILE_PATH_LITERAL("manifest.json");
14 const base::FilePath::CharType kManifestWgtFilename[] =
15     FILE_PATH_LITERAL("config.xml");
16 const base::FilePath::CharType kMessagesFilename[] =
17     FILE_PATH_LITERAL("messages.json");
18 const char kGeneratedMainDocumentFilename[] =
19     "_generated_main_document.html";
20 const base::FilePath::CharType kCookieDatabaseFilename[] =
21     FILE_PATH_LITERAL("ApplicationCookies");
22
23 }  // namespace application
24 }  // namespace xwalk