blob: 8f805fed2eda152563004353e9f574f031a5641e [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
9// The language file that we want to try to open. Of the form
10// language[-country] where language is the 2 letter code from ISO-639.
11const char kLang[] = "lang";
12
[email protected]3d2c6fb2011-07-06 22:26:4513// Load the locale resources from the given path. When running on Mac/Unix the
14// path should point to a locale.pak file.
15const char kLocalePak[] = "locale_pak";
16
[email protected]7dfb69602012-02-17 00:29:0117// Enables UI changes that make it easier to use with a touchscreen.
18const char kTouchOptimizedUI[] = "touch-optimized-ui";
19
[email protected]dc51d1c2011-11-30 04:42:2120#if defined(OS_MACOSX)
21const char kDisableCompositedCoreAnimationPlugins[] =
22 "disable-composited-core-animation-plugins";
23#endif
24
[email protected]42ce29d2011-01-20 23:19:4625} // namespace switches