blob: d83c3cd214ad9be8e64d2961a3034bf57546c532 [file] [log] [blame]
[email protected]7dfb69602012-02-17 00:29:011// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]3d2c6fb2011-07-06 22:26:452// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
[email protected]42ce29d2011-01-20 23:19:464
5#include "ui/base/ui_base_switches.h"
6
7namespace switches {
8
[email protected]8a6aaa72012-04-20 20:53:589// Enable support for touch events.
10const char kEnableTouchEvents[] = "enable-touch-events";
11
[email protected]3455af4e2012-03-12 15:35:1212// The language file that we want to try to open. Of the form
[email protected]42ce29d2011-01-20 23:19:4613// language[-country] where language is the 2 letter code from ISO-639.
14const char kLang[] = "lang";
15
[email protected]3d2c6fb2011-07-06 22:26:4516// Load the locale resources from the given path. When running on Mac/Unix the
17// path should point to a locale.pak file.
18const char kLocalePak[] = "locale_pak";
19
[email protected]3455af4e2012-03-12 15:35:1220// Disable ui::MessageBox. This is useful when running as part of scripts that
21// do not have a user interface.
22const char kNoMessageBox[] = "no-message-box";
23
[email protected]7dfb69602012-02-17 00:29:0124// Enables UI changes that make it easier to use with a touchscreen.
25const char kTouchOptimizedUI[] = "touch-optimized-ui";
26
[email protected]dc51d1c2011-11-30 04:42:2127#if defined(OS_MACOSX)
28const char kDisableCompositedCoreAnimationPlugins[] =
29 "disable-composited-core-animation-plugins";
30#endif
31
[email protected]42ce29d2011-01-20 23:19:4632} // namespace switches