Upstream version 8.36.169.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / common / xwalk_switches.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/runtime/common/xwalk_switches.h"
6
7 namespace switches {
8
9 // Specifies the icon file for the app window.
10 const char kAppIcon[] = "app-icon";
11
12 // Disables the usage of Portable Native Client.
13 const char kDisablePnacl[] = "disable-pnacl";
14
15 // Enable all the experimental features in XWalk.
16 const char kExperimentalFeatures[] = "enable-xwalk-experimental-features";
17
18 // Specifies the window whether launched with fullscreen mode.
19 const char kFullscreen[] = "fullscreen";
20
21 // List the command lines feature flags.
22 const char kListFeaturesFlags[] = "list-features-flags";
23
24 const char kXWalkAllowExternalExtensionsForRemoteSources[] =
25     "allow-external-extensions-for-remote-sources";
26
27 // Specifies the data path directory, which XWalk runtime will look for its
28 // state, e.g. cache, localStorage etc.
29 const char kXWalkDataPath[] = "data-path";
30
31 }  // namespace switches