[email protected] | 7dfb6960 | 2012-02-17 00:29:01 | [diff] [blame^] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | 3d2c6fb | 2011-07-06 22:26:45 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
[email protected] | 42ce29d | 2011-01-20 23:19:46 | [diff] [blame] | 4 | |
5 | #include "ui/base/ui_base_switches.h" | ||||
6 | |||||
7 | namespace 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. | ||||
11 | const char kLang[] = "lang"; | ||||
12 | |||||
[email protected] | 3d2c6fb | 2011-07-06 22:26:45 | [diff] [blame] | 13 | // Load the locale resources from the given path. When running on Mac/Unix the |
14 | // path should point to a locale.pak file. | ||||
15 | const char kLocalePak[] = "locale_pak"; | ||||
16 | |||||
[email protected] | 7dfb6960 | 2012-02-17 00:29:01 | [diff] [blame^] | 17 | // Enables UI changes that make it easier to use with a touchscreen. |
18 | const char kTouchOptimizedUI[] = "touch-optimized-ui"; | ||||
19 | |||||
[email protected] | dc51d1c | 2011-11-30 04:42:21 | [diff] [blame] | 20 | #if defined(OS_MACOSX) |
21 | const char kDisableCompositedCoreAnimationPlugins[] = | ||||
22 | "disable-composited-core-animation-plugins"; | ||||
23 | #endif | ||||
24 | |||||
[email protected] | 42ce29d | 2011-01-20 23:19:46 | [diff] [blame] | 25 | } // namespace switches |